/* Wellfareway Consulting - Enhanced Main Stylesheet */

/* Enhanced CSS Variables with Better Color Flow */
:root {
    --primary-color: #334e3d;
    --primary-light: #4a7c59;
    --primary-dark: #1a2e1f;
    --secondary-color: #5a8c6b;
    --accent-color: #8bc34a;
    --accent-light: #9ccc65;
    --accent-dark: #689f38;
    --dark-color: #1a2e1f;
    --light-color: #f8faf9;
    --light-accent: #e8f5e8;
    --text-color: #2c3e50;
    --text-light: #5a6c7d;
    --text-muted: #7f8c8d;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --shadow: 0 4px 20px -8px rgba(51, 78, 61, 0.15);
    --shadow-lg: 0 20px 40px -12px rgba(51, 78, 61, 0.2);
    --shadow-hover: 0 8px 30px -12px rgba(51, 78, 61, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Font Families */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Enhanced Spacing */
    --section-padding: 100px 0;
    --section-padding-mobile: 80px 0;
    --container-padding: 0 24px;
    --card-padding: 2rem;
    --card-padding-mobile: 1.5rem;
}

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

/* Optimize image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    /* Additional performance optimizations */
    contain: layout style paint;
    object-fit: cover;
    object-position: center;
}

/* Specific optimizations for background images */
.hero-bg-image,
.cta-bg-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    contain: layout style paint;
    /* Prevent layout shifts */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Optimize service images */
.service-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    contain: layout style paint;
    object-fit: cover;
    object-position: center;
    /* Prevent layout shifts */
    width: 100%;
    height: 100%;
}

/* Optimize team images */
.team-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    contain: layout style paint;
    object-fit: cover;
    object-position: center;
    /* Prevent layout shifts */
    width: 100%;
    height: 100%;
}

/* Reduce animation complexity for better performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    font-weight: 400;
    /* Performance improvements */
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 2.5rem; 
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 { 
    font-size: 2rem; 
    font-weight: 600;
}

h3 { 
    font-size: 1.5rem; 
    font-weight: 600;
}

h4 { 
    font-size: 1.25rem; 
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.7;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
}

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    border-radius: 5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.main-nav a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* Hero Section - Enhanced */
.hero-section {
    background: var(--primary-color);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2) saturate(1.1);
    transform: scale(1.05);
    /* Performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 46, 31, 0.7) 0%, 
        rgba(51, 78, 61, 0.6) 30%, 
        rgba(74, 124, 89, 0.5) 70%, 
        rgba(139, 195, 74, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons .btn {
    min-width: 180px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn-primary {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.3);
}

.hero-buttons .btn-primary:hover {
    background: #7cb342;
    border-color: #7cb342;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 195, 74, 0.4);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
    border-width: 2px;
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #7cb342;
    border-color: #7cb342;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

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

/* Content Sections - Enhanced */
.content-section {
    padding: var(--section-padding);
    position: relative;
}

.content-section:nth-child(even) {
    background: var(--light-color);
}

.content-section:nth-child(odd) {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: var(--font-body);
}

/* Who We Serve Section - Enhanced */
.who-we-serve-section {
    background: white;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.serve-item:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2;
}

.serve-item:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2;
}

.serve-item {
    background: white !important;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--shadow) !important;
    overflow: hidden !important;
    transition: var(--transition) !important;
    text-align: left !important;
    border: 1px solid rgba(51, 78, 61, 0.08) !important;
    position: relative !important;
    padding: 0;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.serve-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.serve-item:hover::before {
    transform: scaleX(1);
}

.serve-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.serve-image {
    width: 100% !important;
    height: 220px !important;
    overflow: hidden !important;
    position: relative !important;
}

.serve-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: var(--transition) !important;
    /* Performance optimizations */
    will-change: transform !important;
    backface-visibility: hidden !important;
}

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

.serve-content {
    padding: 2rem !important;
    text-align: left !important;
    overflow: hidden !important;
}

.serve-content h3 {
    color: var(--primary-color) !important;
    margin-bottom: 1rem !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    text-align: left !important;
}

.serve-content p {
    color: var(--text-light) !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
}

/* Services Section - Enhanced */
.services-section {
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(51, 78, 61, 0.1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

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

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    /* Performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
}

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

.card-content {
    padding: var(--card-padding);
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--accent-dark);
}

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

/* Philosophy Section - Enhanced */
.philosophy-section {
    background: var(--light-color);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.philosophy-item {
    background: white;
    padding: 1.8rem;
    border-radius: var(--border-radius-lg);
    text-align: left;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(51, 78, 61, 0.1);
    position: relative;
    overflow: hidden;
}

.philosophy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.philosophy-item:hover::before {
    transform: scaleX(1);
}

.philosophy-icon {
    width: 50px;
    height: 50px;
    margin: 0 0 1.5rem 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
}

.philosophy-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.philosophy-item:hover .philosophy-icon {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.philosophy-item:hover .philosophy-icon::after {
    opacity: 0.1;
}

.philosophy-svg {
    width: 100%;
    height: 100%;
    padding: 12px;
    color: var(--primary-color);
    transition: var(--transition);
}

.philosophy-item:hover .philosophy-svg {
    color: var(--accent-color);
}

.philosophy-item:hover {
    background: white;
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.philosophy-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left !important;
}

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left !important;
}

/* Why Choose Us Section - Enhanced */
.why-choose-section {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: left !important;
    padding: var(--card-padding) !important;
    background: white !important;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--shadow) !important;
    transition: var(--transition) !important;
    border: 1px solid rgba(51, 78, 61, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px !important;
    height: 60px !important;
    margin: 0 0 2rem 0 !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid var(--primary-color) !important;
    transition: var(--transition) !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.feature-item:hover .feature-icon::after {
    opacity: 0.1;
}

.feature-svg {
    width: 100%;
    height: 100%;
    padding: 12px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-item:hover .feature-svg {
    color: var(--accent-color);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.feature-item h3 {
    color: var(--primary-color) !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    text-align: left !important;
}

.feature-item p {
    color: var(--text-light) !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
}

/* Join Team Section */
.join-team-section {
    background: white;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.team-text {
    max-width: 600px;
}

.team-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.team-benefits {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.team-benefits h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.team-benefits ul {
    list-style: none;
    padding: 0;
}

.team-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.team-benefits li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.team-benefits li:last-child {
    border-bottom: none;
}

.team-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 300px;
}

.team-image {
    width: 100%;
    height: 420px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    /* Performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
}

.team-cta:hover .team-image {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Call to Action Section - Enhanced */
.cta-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.15) contrast(1.3) saturate(1.1);
    /* Performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 46, 31, 0.95) 0%, 
        rgba(51, 78, 61, 0.85) 50%, 
        rgba(74, 124, 89, 0.8) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 195, 74, 0.5);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.9);
    border-width: 2px;
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Footer - Enhanced */
.site-footer {
    background: var(--dark-color);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.site-footer .footer-section h3,
.site-footer .footer-section h4 {
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
}

.site-footer .footer-section h3 {
    font-size: 1.6rem;
    color: var(--accent-color);
}

.site-footer .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
}

.site-footer .footer-section h4 {
    font-size: 1.3rem;
    color: white;
}

.site-footer .footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.site-footer .footer-section p {
    color: #bdc3c7;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
    color: var(--accent-color);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

/* Footer Contact Information */
.site-footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.site-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #bdc3c7;
}

.site-footer .contact-icon {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.site-footer .contact-item span {
    line-height: 1.5;
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-content h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.newsletter-content p {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* Animations */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When JavaScript is working, these will be overridden */
.js-loaded .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
}

.js-loaded .animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Performance-optimized animations */
.hero-title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

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

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.mobile-nav li {
    margin: 0;
}

.mobile-nav a {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: block;
}

.mobile-nav a:hover {
    background: var(--light-accent);
    color: var(--primary-color);
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle {
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: var(--container-padding);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
        --card-padding: 1.5rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 2.5rem;
        flex-wrap: wrap;
    }
    
    .hero-stat::after {
        display: none;
    }
    
    .hero-buttons .btn {
        min-width: 160px;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .serve-grid,
    .services-grid,
    .philosophy-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    /* Footer Sections Mobile */
    .footer-section {
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        text-align: center;
        margin-bottom: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* CTA Section Mobile Adjustments */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons .btn {
        min-width: 160px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
        --card-padding: 1.25rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
    }
    
    .hero-stat-number {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .serve-item,
    .service-card,
    .philosophy-item,
    .feature-item {
        margin: 0 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Enhanced Mobile Footer Styles */
@media (max-width: 768px) {
    /* Footer Content Layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    /* Footer Sections */
    .footer-section {
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        text-align: center;
        margin-bottom: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Footer Social Media */
    .footer-social {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: var(--accent-color);
        transform: translateY(-3px) scale(1.1);
    }
    
    /* Footer Links */
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .footer-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .footer-links a {
        display: block;
        padding: 0.75rem 1.5rem;
        border-radius: var(--border-radius);
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .footer-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent-color);
        transform: translateY(-2px);
    }
    
    .footer-links a::before {
        display: none;
    }
    
    /* Footer Contact Info */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--border-radius);
        min-width: 250px;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .contact-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .contact-icon {
        color: var(--accent-color);
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }
    
    .contact-item span {
        color: #bdc3c7;
        font-size: 0.95rem;
        text-align: center;
    }
    
    /* Footer Newsletter */
    .footer-newsletter {
        padding: 2rem 1rem;
        margin: 2rem 0;
        text-align: center;
    }
    
    .newsletter-content {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .newsletter-content h4 {
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }
    
    .newsletter-content p {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .newsletter-form input {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius);
        background: rgba(255, 255, 255, 0.05);
        color: white;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    
    .newsletter-form input:focus {
        outline: none;
        border-color: var(--accent-color);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 14px 24px;
        background: var(--accent-color);
        color: var(--dark-color);
        border: none;
        border-radius: var(--border-radius);
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        min-height: 48px;
    }
    
    .newsletter-form button:hover {
        background: var(--accent-light);
        transform: translateY(-2px);
    }
    
    /* Footer Bottom */
    .footer-bottom {
        padding: 2rem 1rem;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
    }
    
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-bottom-content p {
        color: #bdc3c7;
        margin: 0;
        font-size: 0.9rem;
    }
    
    .footer-legal {
        display: flex;
        gap: 1rem;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-legal a {
        color: #bdc3c7;
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--border-radius);
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .footer-legal a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent-color);
    }
    
    .separator {
        color: rgba(255, 255, 255, 0.3);
    }
}

/* Print Styles */
@media print {
    .site-header,
    .mobile-menu-toggle,
    .hero-buttons,
    .cta-buttons,
    .team-cta {
        display: none;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
        padding: 20px 0;
    }
    
    .hero-title {
        color: black !important;
    }
    
    .content-section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Scroll Animations */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-loaded .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.js-loaded .animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation Delays */
.animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced Hover Effects */
.serve-item:hover,
.service-card:hover,
.philosophy-item:hover,
.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Smooth Color Transitions */
.serve-item,
.service-card,
.philosophy-item,
.feature-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Button Interactions */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn:hover::before {
    left: 100%;
}

/* Enhanced Card Shadows */
.serve-item,
.service-card,
.philosophy-item,
.feature-item {
    box-shadow: 0 4px 20px -8px rgba(51, 78, 61, 0.15);
}

.serve-item:hover,
.service-card:hover,
.philosophy-item:hover,
.feature-item:hover {
    box-shadow: 0 20px 40px -12px rgba(51, 78, 61, 0.25);
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1001;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top-btn.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 195, 74, 0.5);
}

.scroll-to-top-btn svg {
    transition: var(--transition);
}

.scroll-to-top-btn:hover svg {
    transform: translateY(-2px);
}

/* Responsive adjustments for scroll-to-top button */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* About Page Specific Styles */
.about-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.about-main-section {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--light-accent) 100%);
    padding: var(--section-padding);
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text .lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-element {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.intro-svg {
    width: 60px;
    height: 60px;
    color: white;
}

/* Who We Serve Section */
.who-we-serve-section {
    background: white;
    padding: var(--section-padding);
}

.serve-item {
    background: white !important;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--shadow) !important;
    overflow: hidden !important;
    transition: var(--transition) !important;
    text-align: left !important;
    border: 1px solid rgba(51, 78, 61, 0.1) !important;
    position: relative !important;
}

.serve-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.serve-item-large {
    grid-column: span 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.serve-item-large h3,
.serve-item-large p {
    color: white;
}

.serve-item-elevated {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
}

.serve-item-elevated h3,
.serve-item-elevated p {
    color: white;
}

.serve-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 0 1rem 0 !important;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 6px 20px rgba(51, 78, 61, 0.25) !important;
    border: 3px solid white !important;
}

.serve-svg {
    width: 40px !important;
    height: 40px !important;
    color: white !important;
}

.serve-content {
    padding: 1.5rem !important;
    text-align: left !important;
    overflow: hidden !important;
}

.serve-content h3 {
    color: var(--primary-color) !important;
    margin-bottom: 0.75rem !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    text-align: left !important;
}

.serve-content p {
    color: var(--text-light) !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
}

.serve-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
}

.cta-decoration {
    margin-bottom: 1rem;
}

.cta-svg {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    margin: 0 auto;
}

.cta-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    font-style: italic;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, var(--light-accent) 0%, var(--light-color) 100%);
    padding: var(--section-padding);
    overflow: visible !important;
}

.philosophy-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    overflow: visible !important;
}

.philosophy-item {
    background: white !important;
    padding: 1.5rem !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow) !important;
    transition: var(--transition) !important;
    text-align: left !important;
    color: var(--text-color) !important;
    position: relative !important;
    padding-top: 3rem !important;
    overflow: visible !important;
}

.philosophy-number {
    position: absolute !important;
    left: 50% !important;
    top: -20px !important;
    transform: translateX(-50%) !important;
    width: 40px !important;
    height: 40px !important;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    box-shadow: 0 4px 15px rgba(51, 78, 61, 0.15) !important;
    z-index: 2 !important;
}

.philosophy-item h3 {
    color: var(--primary-color) !important;
    margin-bottom: 1rem !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    text-align: left !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.philosophy-item p {
    color: var(--text-light) !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    font-size: 1rem !important;
    text-align: left !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.philosophy-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.philosophy-item-featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: scale(1.05);
}

.philosophy-item-featured h3,
.philosophy-item-featured p {
    color: white;
}

.philosophy-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.cta-decoration-left,
.cta-decoration-right {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.cta-decoration-left {
    left: -20px;
    transform: translateY(-50%);
}

.cta-decoration-right {
    right: -20px;
    transform: translateY(-50%);
}

/* Services Overview Section */
.services-overview-section {
    background: white;
    padding: var(--section-padding);
}

.services-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.service-overview-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.service-overview-card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.service-overview-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.service-overview-card:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.service-overview-card:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.service-overview-card:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.service-card-tall {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-wide {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--light-accent), var(--light-color));
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--light-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--light-accent) 100%);
    padding: var(--section-padding);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
}

.team-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(51, 78, 61, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

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

.overlay-icon {
    width: 30px;
    height: 30px;
    color: var(--accent-color);
}

/* Why Choose Us Section */
.why-choose-section {
    background: white;
    padding: var(--section-padding);
    overflow: visible !important;
}

.features-hexagon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: visible !important;
}

.feature-item-hex {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: visible !important;
}

.feature-item-hex:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-item-hex-offset {
    transform: translateY(1rem);
}

.feature-item-hex-offset:hover {
    transform: translateY(0.5rem);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--light-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-svg {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .serve-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-page .serve-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .serve-item:nth-child(1),
    .serve-item:nth-child(2),
    .serve-item:nth-child(3),
    .serve-item:nth-child(4),
    .serve-item:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .about-page .serve-item:nth-child(1),
    .about-page .serve-item:nth-child(2),
    .about-page .serve-item:nth-child(3),
    .about-page .serve-item:nth-child(4),
    .about-page .serve-item:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .serve-item-large {
        grid-column: span 1;
    }
    
    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-masonry {
        grid-template-columns: 1fr;
    }
    
    .service-card-wide {
        grid-column: span 1;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-hexagon {
        grid-template-columns: 1fr;
    }
    
    .feature-item-hex-offset {
        transform: none;
    }
    
    .feature-item-hex-offset:hover {
        transform: scale(1.05);
    }
}

/* About Page Specific Styles */
.about-page .who-we-serve-section {
    background: white;
    padding: var(--section-padding);
}

.about-page .serve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 3rem 0;
}

.about-page .serve-item:nth-child(1) { grid-column: 1 / 2; }
.about-page .serve-item:nth-child(2) { grid-column: 2 / 3; }
.about-page .serve-item:nth-child(3) { grid-column: 3 / 4; }
.about-page .serve-item:nth-child(4) { grid-column: 1 / span 1; grid-row: 2; }
.about-page .serve-item:nth-child(5) { grid-column: 2 / span 1; grid-row: 2; }

.about-page .serve-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.about-page .serve-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-page .serve-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 0 1rem 0 !important;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 6px 20px rgba(51, 78, 61, 0.25) !important;
    border: 3px solid white !important;
}

.about-page .serve-svg {
    width: 40px !important;
    height: 40px !important;
    color: white !important;
}

.about-page .serve-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
}

.about-page .cta-decoration {
    margin-bottom: 1rem;
}

.about-page .cta-svg {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    margin: 0 auto;
}

.about-page .cta-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* About Page Philosophy Section */
.about-page .philosophy-section {
    background: var(--light-color);
    padding: var(--section-padding);
}

.about-page .philosophy-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.about-page .philosophy-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

.about-page .philosophy-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.about-page .philosophy-item-featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: scale(1.05);
}

.about-page .philosophy-item-featured h3,
.about-page .philosophy-item-featured p {
    color: white;
}

.about-page .philosophy-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--light-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .philosophy-svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.about-page .philosophy-item-featured .philosophy-icon {
    background: rgba(255, 255, 255, 0.2);
}

.about-page .philosophy-item-featured .philosophy-svg {
    color: white;
}

.about-page .philosophy-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-page .cta-decoration-left,
.about-page .cta-decoration-right {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.about-page .cta-decoration-left {
    left: -20px;
    transform: translateY(-50%);
}

.about-page .cta-decoration-right {
    right: -20px;
    transform: translateY(-50%);
}

/* Services Page Specific Styles - Enhanced with !important to override conflicts */
/* Services Page Header - Same as main site */
.services-page .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 1000 !important;
    transition: var(--transition) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

.services-page .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.services-page .logo {
    display: flex;
    align-items: center;
}

.services-page .logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.services-page .logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.02em;
}

.services-page .main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.services-page .main-nav a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.services-page .main-nav a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.services-page .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.services-page .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* Services Page Hero Section - Redesigned with !important to override conflicts */
.services-page .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%) !important;
    color: white !important;
    padding: 160px 0 120px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* About Page Hero Section - Same pattern as Services Page */
.about-page .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%) !important;
    color: white !important;
    padding: 160px 0 120px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.services-page .hero-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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about-page .hero-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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.services-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-page .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.3) saturate(1.2);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.about-page .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.3) saturate(1.2);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.services-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 46, 31, 0.8) 0%, 
        rgba(51, 78, 61, 0.7) 30%, 
        rgba(74, 124, 89, 0.6) 70%, 
        rgba(139, 195, 74, 0.5) 100%);
    z-index: 2;
}

.about-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 46, 31, 0.8) 0%, 
        rgba(51, 78, 61, 0.7) 30%, 
        rgba(74, 124, 89, 0.6) 70%, 
        rgba(139, 195, 74, 0.5) 100%);
    z-index: 2;
}

.services-page .hero-content {
    max-width: 900px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 3 !important;
    padding: 0 20px !important;
    animation: fadeInUp 1s ease-out !important;
    text-align: center !important;
    color: white !important;
}

.about-page .hero-content {
    max-width: 900px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 3 !important;
    padding: 0 20px !important;
    animation: fadeInUp 1s ease-out !important;
    text-align: center !important;
    color: white !important;
}

.services-page .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.about-page .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.services-page .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.services-page .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.services-page .hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.services-page .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 1s both;
}

.services-page .hero-stat {
    text-align: center;
}

.services-page .hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-page .hero-stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-page .hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.services-page .hero-scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.7);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Page Service Cards */
.services-page .service-detail-section {
    background: var(--light-color);
    padding: var(--section-padding);
}

.services-page .service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.services-page .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-top: 100px;
}

.services-page .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.services-page .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
}

.services-page .section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: var(--font-body);
}

.services-page .service-detail-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(51, 78, 61, 0.1);
    position: relative;
}

.services-page .service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.services-page .service-detail-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.services-page .service-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.services-page .service-detail-card:hover .service-detail-img {
    transform: scale(1.05);
}

.services-page .service-detail-content {
    padding: 2.5rem;
}

.services-page .service-detail-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.services-page .service-detail-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.services-page .service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.services-page .service-detail-content li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.services-page .service-detail-content .service-features {
    background: var(--light-accent);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-color);
}

.services-page .service-detail-content .service-features h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.services-page .service-detail-content .service-features ul {
    margin: 0;
    padding-left: 1.5rem;
}

.services-page .service-detail-content .service-features li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Services Page Process Section */
.services-page .process-section {
    background: white;
    padding: var(--section-padding);
}

.services-page .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.services-page .process-step {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.services-page .process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.services-page .process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(51, 78, 61, 0.25);
}

.services-page .process-step h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.services-page .process-step p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Services Page CTA Section */
.services-page .services-cta-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.services-page .services-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-page .services-cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.15) contrast(1.3) saturate(1.1);
}

.services-page .services-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 46, 31, 0.95) 0%, 
        rgba(51, 78, 61, 0.85) 50%, 
        rgba(74, 124, 89, 0.8) 100%);
    z-index: 2;
}

.services-page .services-cta-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
}

.services-page .services-cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-page .services-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.services-page .services-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-page .services-cta-buttons .btn {
    min-width: 180px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-page .services-cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
}

.services-page .services-cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 195, 74, 0.5);
}

.services-page .services-cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.9);
    border-width: 2px;
    backdrop-filter: blur(10px);
}

.services-page .services-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Services Page Responsive Design */
@media (max-width: 768px) {
    .services-page .hero-section {
        padding: 120px 0 80px;
        min-height: 70vh;
    }
    
    .services-page .hero-title {
        font-size: 2.8rem;
    }
    
    .services-page .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-page .hero-description {
        font-size: 1rem;
    }
    
    .services-page .hero-stats {
        gap: 2.5rem;
        margin-top: 3rem;
        padding-top: 2.5rem;
        flex-wrap: wrap;
    }
    
    .services-page .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-page .service-detail-content {
        padding: 1.5rem;
    }
    
    .services-page .service-detail-content h3 {
        font-size: 1.5rem;
    }
    
    .services-page .services-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .services-page .services-cta-buttons .btn {
        min-width: 160px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-page .hero-title {
        font-size: 2rem;
    }
    
    .services-page .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-page .service-detail-image {
        height: 200px;
    }
    
    .services-page .service-detail-content {
        padding: 1.25rem;
    }
    
    .services-page .services-cta-content h2 {
        font-size: 1.6rem;
    }
    
    .services-page .services-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .services-page .services-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
}

/* Services Page Footer - Same as main site */
.services-page .site-footer {
    background: var(--dark-color);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.services-page .site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.services-page .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.services-page .footer-section h3,
.services-page .footer-section h4 {
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
}

.services-page .footer-section h3 {
    font-size: 1.6rem;
    color: var(--accent-color);
}

.services-page .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
}

.services-page .footer-section h4 {
    font-size: 1.3rem;
    color: white;
}

.services-page .footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.services-page .footer-section p {
    color: #bdc3c7;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.services-page .footer-links li {
    margin-bottom: 0.75rem;
}

.services-page .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
    display: inline-block;
    position: relative;
}

.services-page .footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.services-page .footer-links a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
    color: var(--accent-color);
}

.services-page .footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.services-page .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.services-page .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.services-page .footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

/* Services Page Mobile Menu */
.services-page .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.services-page .mobile-nav.active {
    display: flex;
}

.services-page .mobile-nav a {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

/* Services Page Responsive Header */
@media (max-width: 768px) {
    .services-page .mobile-menu-toggle {
        display: flex;
    }
    
    .services-page .main-nav {
        display: none;
    }
    
    .services-page .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .services-page .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-page .footer-section h3::after,
    .services-page .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Services Page Specific Styles - Enhanced with !important to override conflicts */
/* Services Page Hero Section - Redesigned with !important to override conflicts */
.services-page .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%) !important;
    color: white !important;
    padding: 160px 0 120px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* About Page Hero Section - Same pattern as Services Page */
.about-page .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%) !important;
    color: white !important;
    padding: 160px 0 120px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Enhanced Services Overview Section */
.services-page .services-overview {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}

.services-page .services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

.services-page .service-card {
    background: white !important;
    border-radius: 20px !important;
    padding: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    border: 1px solid rgba(139, 195, 74, 0.1) !important;
}

.services-page .service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(139, 195, 74, 0.2) !important;
    border-color: var(--accent-color) !important;
}

.services-page .service-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    padding: 2rem 2rem 1rem !important;
    position: relative !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
}

.services-page .service-icon {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.services-page .service-icon svg {
    width: 32px !important;
    height: 32px !important;
}

.services-page .service-badge {
    background: var(--accent-color) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3) !important;
}

.services-page .service-content {
    padding: 2rem !important;
}

.services-page .service-content h3 {
    color: var(--primary-color) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
}

.services-page .service-tagline {
    color: var(--accent-color) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    font-style: italic !important;
}

.services-page .service-description {
    color: var(--text-color) !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

.services-page .service-details h4 {
    color: var(--primary-dark) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    margin-top: 1.5rem !important;
}

.services-page .service-details ul {
    list-style: none !important;
    padding: 0 !important;
    margin-bottom: 1.5rem !important;
}

.services-page .service-details li {
    color: var(--text-color) !important;
    padding: 0.5rem 0 !important;
    padding-left: 1.5rem !important;
    position: relative !important;
    line-height: 1.5 !important;
}

.services-page .service-details li::before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--accent-color) !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
}

.services-page .service-ideal h4 {
    color: var(--primary-dark) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    margin-top: 1.5rem !important;
}

.services-page .service-ideal p {
    color: var(--text-color) !important;
    line-height: 1.5 !important;
    font-style: italic !important;
    background: rgba(139, 195, 74, 0.1) !important;
    padding: 1rem !important;
    border-radius: 10px !important;
    border-left: 4px solid var(--accent-color) !important;
}

.services-page .service-cta {
    margin-top: 2rem !important;
    text-align: center !important;
}

.services-page .service-cta .btn {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    padding: 0.75rem 2rem !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.services-page .service-cta .btn:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(26, 46, 31, 0.3) !important;
}

/* Responsive Design for Services Grid */
@media (max-width: 768px) {
    .services-page .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .services-page .service-card-header {
        padding: 1.5rem 1.5rem 1rem !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .services-page .service-content {
        padding: 1.5rem !important;
    }
    
    .services-page .service-content h3 {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 480px) {
    .services-page .services-overview {
        padding: 60px 0 !important;
    }
    
    .services-page .service-card-header {
        padding: 1rem !important;
    }
    
    .services-page .service-content {
        padding: 1rem !important;
    }
    
    .services-page .service-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .services-page .service-icon svg {
        width: 28px !important;
        height: 28px !important;
    }
}

/* Employment Page Specific Styles */
.employment-page .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%) !important;
    color: white !important;
    padding: 160px 0 120px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.employment-page .hero-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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.employment-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.employment-page .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.3) saturate(1.2);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.employment-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 46, 31, 0.8) 0%, 
        rgba(51, 78, 61, 0.7) 30%, 
        rgba(74, 124, 89, 0.6) 70%, 
        rgba(139, 195, 74, 0.5) 100%);
    z-index: 2;
}

.employment-page .hero-content {
    max-width: 900px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 3 !important;
    padding: 0 20px !important;
    animation: fadeInUp 1s ease-out !important;
    text-align: center !important;
    color: white !important;
}

.employment-page .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Employment Page Specific Styles */
.employment-page .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%) !important;
    color: white !important;
    padding: 160px 0 120px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.employment-page .hero-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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.employment-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.employment-page .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.3) saturate(1.2);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.employment-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 46, 31, 0.8) 0%, 
        rgba(51, 78, 61, 0.7) 30%, 
        rgba(74, 124, 89, 0.6) 70%, 
        rgba(139, 195, 74, 0.5) 100%);
    z-index: 2;
}

.employment-page .hero-content {
    max-width: 900px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 3 !important;
    padding: 0 20px !important;
    animation: fadeInUp 1s ease-out !important;
    text-align: center !important;
    color: white !important;
}

.employment-page .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Employment Content Section */
.employment-page .employment-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.employment-page .employment-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.employment-page .employment-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.employment-page .employment-header p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
    color: #64748b;
}

/* Requirements Grid */
.employment-page .requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.employment-page .requirement-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 195, 74, 0.1);
    position: relative;
    overflow: hidden;
}

.employment-page .requirement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.employment-page .requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 195, 74, 0.15);
    border-color: var(--accent-color);
}

.employment-page .requirement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(139, 195, 74, 0.3);
}

.employment-page .requirement-icon svg {
    width: 32px;
    height: 32px;
}

.employment-page .requirement-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.employment-page .requirement-card p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.employment-page .requirement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.employment-page .requirement-card li {
    color: var(--text-color);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.employment-page .requirement-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.employment-page .requirement-card ul ul {
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.employment-page .requirement-card ul ul li {
    padding-left: 1rem;
    font-size: 0.95rem;
    color: #64748b;
}

/* Additional Notes Section */
.employment-page .additional-notes {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 195, 74, 0.1);
    position: relative;
}

.employment-page .additional-notes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.employment-page .additional-notes h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.employment-page .additional-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.employment-page .additional-notes li {
    color: var(--text-color);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.employment-page .additional-notes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Employment CTA Section */
.employment-page .employment-cta {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 195, 74, 0.1);
    position: relative;
}

.employment-page .employment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.employment-page .employment-cta h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.employment-page .employment-cta p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.employment-page .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.employment-page .cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 160px;
}

.employment-page .cta-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.employment-page .cta-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 46, 31, 0.3);
}

.employment-page .cta-buttons .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.employment-page .cta-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 46, 31, 0.3);
}

/* Responsive Design for Employment Page */
@media (max-width: 768px) {
    .employment-page .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .employment-page .employment-header h2 {
        font-size: 2rem;
    }
    
    .employment-page .employment-header p {
        font-size: 1.1rem;
    }
    
    .employment-page .requirement-card {
        padding: 1.5rem;
    }
    
    .employment-page .additional-notes {
        padding: 2rem;
        margin: 0 1rem 3rem;
    }
    
    .employment-page .employment-cta {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .employment-page .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .employment-page .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .employment-page .employment-content {
        padding: 60px 0;
    }
    
    .employment-page .employment-header h2 {
        font-size: 1.8rem;
    }
    
    .employment-page .requirement-card {
        padding: 1rem;
    }
    
    .employment-page .requirement-icon {
        width: 50px;
        height: 50px;
    }
    
    .employment-page .requirement-icon svg {
        width: 28px;
        height: 28px;
    }
}

.employment-page .requirement-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.employment-page .requirement-card p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.employment-page .requirement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.employment-page .requirement-card li {
    color: var(--text-color);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.employment-page .requirement-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.employment-page .requirement-card ul ul {
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.employment-page .requirement-card ul ul li {
    padding-left: 1rem;
    font-size: 0.95rem;
    color: #64748b;
}

/* Additional Notes Section */
.employment-page .additional-notes {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 195, 74, 0.1);
    position: relative;
}

.employment-page .additional-notes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.employment-page .additional-notes h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.employment-page .additional-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.employment-page .additional-notes li {
    color: var(--text-color);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.employment-page .additional-notes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Employment CTA Section */
.employment-page .employment-cta {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 195, 74, 0.1);
    position: relative;
}

.employment-page .employment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.employment-page .employment-cta h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.employment-page .employment-cta p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.employment-page .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.employment-page .cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 160px;
}

.employment-page .cta-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.employment-page .cta-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 46, 31, 0.3);
}

.employment-page .cta-buttons .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.employment-page .cta-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 46, 31, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .employment-page .requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .employment-page .employment-header h2 {
        font-size: 2rem;
    }
    
    .employment-page .employment-header p {
        font-size: 1.1rem;
    }
    
    .employment-page .requirement-card {
        padding: 1.5rem;
    }
    
    .employment-page .additional-notes {
        padding: 2rem;
        margin: 0 1rem 3rem;
    }
    
    .employment-page .employment-cta {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .employment-page .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .employment-page .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .employment-page .employment-content {
        padding: 60px 0;
    }
    
    .employment-page .employment-header h2 {
        font-size: 1.8rem;
    }
    
    .employment-page .requirement-card {
        padding: 1rem;
    }
    
    .employment-page .requirement-icon {
        width: 50px;
        height: 50px;
    }
    
    .employment-page .requirement-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Employment Application Form Styles */
.application-form-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.application-form-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.application-form-section .section-header h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.application-form-section .section-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

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

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-header h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Checkbox Styles */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-item:hover {
    background-color: rgba(139, 195, 74, 0.05);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.checkbox-item .checkmark {
    display: none;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.form-navigation .btn {
    min-width: 120px;
    padding: 0.75rem 1.5rem;
}

/* Progress Bar */
.form-progress {
    margin-top: 2rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive Design for Application Form */
@media (max-width: 768px) {
    .application-form-section {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .application-form-section {
        padding: 1.5rem;
    }
    
    .application-form-section .section-header h3 {
        font-size: 2rem;
    }
    
    .step-header h4 {
        font-size: 1.3rem;
    }
}

/* Disclaimer Page Styles */
.disclaimer-page {
    background: var(--light-color);
}

.disclaimer-page .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%) !important;
    color: white !important;
    padding: 160px 0 120px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.disclaimer-page .hero-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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.disclaimer-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.disclaimer-page .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.3) saturate(1.2);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.disclaimer-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 46, 31, 0.8) 0%, 
        rgba(51, 78, 61, 0.7) 30%, 
        rgba(74, 124, 89, 0.6) 70%, 
        rgba(139, 195, 74, 0.5) 100%);
    z-index: 2;
}

.disclaimer-page .hero-content {
    max-width: 900px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 3 !important;
    padding: 0 20px !important;
    animation: fadeInUp 1s ease-out !important;
    text-align: center !important;
    color: white !important;
}

.disclaimer-page .hero-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 2rem !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.disclaimer-page .hero-subtitle {
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
    opacity: 0.9 !important;
}

.disclaimer-page .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Disclaimer Content */
.disclaimer-content {
    padding: 80px 0;
    background: white;
}

.disclaimer-header {
    text-align: center;
    margin-bottom: 4rem;
}

.disclaimer-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.disclaimer-intro {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-main {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-main > div {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 1px solid rgba(139, 195, 74, 0.1);
    transition: all 0.3s ease;
}

.disclaimer-main > div:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 195, 74, 0.1);
    border-color: var(--accent-color);
}

.disclaimer-main h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.disclaimer-main p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.disclaimer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disclaimer-main li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.disclaimer-main li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.disclaimer-main li:last-child {
    margin-bottom: 0;
}

/* Disclaimer CTA */
.disclaimer-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 20px;
}

.disclaimer-cta h3 {
    font-size: 2rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.disclaimer-cta p {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.disclaimer-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.disclaimer-cta .btn {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.disclaimer-cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.disclaimer-cta .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .disclaimer-page .hero-title {
        font-size: 2.5rem !important;
    }
    
    .disclaimer-page .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .disclaimer-header h2 {
        font-size: 2rem;
    }
    
    .disclaimer-main > div {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .disclaimer-cta {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .disclaimer-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .disclaimer-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .disclaimer-page .hero-title {
        font-size: 2rem !important;
    }
    
    .disclaimer-page .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .disclaimer-header h2 {
        font-size: 1.8rem;
    }
    
    .disclaimer-main > div {
        padding: 1rem;
    }
    
    .disclaimer-cta {
        padding: 1.5rem;
    }
    
    .disclaimer-cta h3 {
        font-size: 1.5rem;
    }
}

/* Services Page Contact Section */
.services-page .contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-page .contact-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-page .contact-section .section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-page .contact-section .section-header p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.services-page .contact-content1 {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.services-page .contact-info1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.services-page .contact-method1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.services-page .contact-method1:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.services-page .contact-icon1 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.services-page .contact-details1 h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.services-page .contact-details1 p {
    color: var(--text-color);
    margin: 0;
}

.services-page .contact-details1 a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.services-page .contact-details1 a:hover {
    color: var(--accent-color);
}

.services-page .contact-cta1 {
    text-align: center;
}

.services-page .contact-cta1 .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .services-page .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-page .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Join Our Team Page Specific Styles */
.join-team-page .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%) !important;
    color: white !important;
    padding: 160px 0 120px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.join-team-page .hero-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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.join-team-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.join-team-page .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.3) saturate(1.2);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.join-team-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 46, 31, 0.8) 0%, 
        rgba(51, 78, 61, 0.7) 30%, 
        rgba(74, 124, 89, 0.6) 70%, 
        rgba(139, 195, 74, 0.5) 100%);
    z-index: 2;
}

.join-team-page .hero-content {
    max-width: 1000px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 3 !important;
    padding: 0 20px !important;
    animation: fadeInUp 1s ease-out !important;
    text-align: center !important;
    color: white !important;
}

.join-team-page .hero-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 2rem !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.join-team-page .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Intro Section */
.join-team-page .intro-section {
    padding: 80px 0;
    background: white;
}

.join-team-page .intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.join-team-page .intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.join-team-page .intro-text:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-color);
}

/* Section Headers */
.join-team-page .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.join-team-page .section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.join-team-page .section-header p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Work With Us Section */
.join-team-page .why-work-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.join-team-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.join-team-page .benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 195, 74, 0.1);
    position: relative;
    overflow: hidden;
}

.join-team-page .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.join-team-page .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 195, 74, 0.15);
    border-color: var(--accent-color);
}

.join-team-page .benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(139, 195, 74, 0.3);
}

.join-team-page .benefit-icon svg {
    width: 40px;
    height: 40px;
}

.join-team-page .benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Intro Section */
.join-team-page .intro-section {
    padding: 80px 0;
    background: white;
}

.join-team-page .intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.join-team-page .intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.join-team-page .intro-text:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-color);
}

/* Section Headers */
.join-team-page .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.join-team-page .section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.join-team-page .section-header p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Work With Us Section */
.join-team-page .why-work-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.join-team-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.join-team-page .benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 195, 74, 0.1);
    position: relative;
    overflow: hidden;
}

.join-team-page .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.join-team-page .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 195, 74, 0.15);
    border-color: var(--accent-color);
}

.join-team-page .benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(139, 195, 74, 0.3);
}

.join-team-page .benefit-icon svg {
    width: 40px;
    height: 40px;
}

.join-team-page .benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Roles Section */
.join-team-page .roles-section {
    padding: 80px 0;
    background: white;
}

.join-team-page .roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.join-team-page .role-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(139, 195, 74, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.join-team-page .role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.join-team-page .role-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 195, 74, 0.1);
    border-color: var(--accent-color);
}

.join-team-page .role-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.join-team-page .role-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Qualities Section */
.join-team-page .qualities-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.join-team-page .qualities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.join-team-page .quality-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 195, 74, 0.1);
}

.join-team-page .quality-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.15);
    border-color: var(--accent-color);
}

.join-team-page .quality-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.join-team-page .quality-icon svg {
    width: 24px;
    height: 24px;
}

.join-team-page .quality-item span {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Apply Section */
.join-team-page .apply-section {
    padding: 80px 0;
    background: white;
}

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

.join-team-page .apply-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.join-team-page .apply-content p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.join-team-page .apply-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.join-team-page .apply-buttons .btn {
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 180px;
    font-size: 1.1rem;
}

.join-team-page .apply-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.join-team-page .apply-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 46, 31, 0.3);
}

.join-team-page .apply-buttons .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.join-team-page .apply-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 46, 31, 0.3);
}

/* Questions Section */
.join-team-page .questions-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.join-team-page .questions-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.join-team-page .questions-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.join-team-page .questions-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.join-team-page .questions-content a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design for Join Our Team Page */
@media (max-width: 768px) {
    .join-team-page .hero-title {
        font-size: 2.2rem !important;
    }
    
    .join-team-page .intro-text {
        font-size: 1.1rem;
    }
    
    .join-team-page .section-header h2 {
        font-size: 2rem;
    }
    
    .join-team-page .benefits-grid,
    .join-team-page .roles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .join-team-page .qualities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .join-team-page .apply-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .join-team-page .apply-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .join-team-page .hero-title {
        font-size: 1.8rem !important;
    }
    
    .join-team-page .intro-text {
        font-size: 1rem;
    }
    
    .join-team-page .section-header h2 {
        font-size: 1.8rem;
    }
    
    .join-team-page .benefit-card,
    .join-team-page .role-card {
        padding: 1.5rem;
    }
    
    .join-team-page .quality-item {
        padding: 1rem;
    }
    
    .join-team-page .quality-icon {
        width: 35px;
        height: 35px;
    }
    
    .join-team-page .quality-icon svg {
        width: 20px;
        height: 20px;
    }
}

.join-team-page .quality-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.join-team-page .quality-icon svg {
    width: 24px;
    height: 24px;
}

.join-team-page .quality-item span {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Apply Section */
.join-team-page .apply-section {
    padding: 80px 0;
    background: white;
}

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

.join-team-page .apply-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.join-team-page .apply-content p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.join-team-page .apply-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.join-team-page .apply-buttons .btn {
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 180px;
    font-size: 1.1rem;
}

.join-team-page .apply-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.join-team-page .apply-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 46, 31, 0.3);
}

.join-team-page .apply-buttons .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.join-team-page .apply-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 46, 31, 0.3);
}

/* Questions Section */
.join-team-page .questions-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.join-team-page .questions-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.join-team-page .questions-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.join-team-page .questions-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.join-team-page .questions-content a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .join-team-page .hero-title {
        font-size: 2.2rem !important;
    }
    
    .join-team-page .intro-text {
        font-size: 1.1rem;
    }
    
    .join-team-page .section-header h2 {
        font-size: 2rem;
    }
    
    .join-team-page .benefits-grid,
    .join-team-page .roles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .join-team-page .qualities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .join-team-page .apply-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .join-team-page .apply-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .join-team-page .hero-title {
        font-size: 1.8rem !important;
    }
    
    .join-team-page .intro-text {
        font-size: 1rem;
    }
    
    .join-team-page .section-header h2 {
        font-size: 1.8rem;
    }
    
    .join-team-page .benefit-card,
    .join-team-page .role-card {
        padding: 1.5rem;
    }
    
    .join-team-page .quality-item {
        padding: 1rem;
    }
    
    .join-team-page .quality-icon {
        width: 35px;
        height: 35px;
    }
    
    .join-team-page .quality-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Contact Page Specific Styles */
.contact-page .hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%) !important;
    color: white !important;
    padding: 160px 0 120px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.contact-page .hero-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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-page .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.3) saturate(1.2);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.contact-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 46, 31, 0.8) 0%, 
        rgba(51, 78, 61, 0.7) 30%, 
        rgba(74, 124, 89, 0.6) 70%, 
        rgba(139, 195, 74, 0.5) 100%);
    z-index: 2;
}

.contact-page .hero-content {
    max-width: 900px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 3 !important;
    padding: 0 20px !important;
    animation: fadeInUp 1s ease-out !important;
    text-align: center !important;
    color: white !important;
}

.contact-page .hero-subtitle {
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
    opacity: 0.9 !important;
}

.contact-page .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Contact Content Section */
.contact-page .contact-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}



.contact-page .contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-page .contact-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-page .contact-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-page .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-page .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(139, 195, 74, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(139, 195, 74, 0.1);
    transition: all 0.3s ease;
}

.contact-page .contact-method:hover {
    background: rgba(139, 195, 74, 0.1);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.contact-page .contact-details h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.contact-page .contact-details p {
    color: var(--text-color);
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.contact-page .contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-page .contact-details a:hover {
    color: var(--accent-color);
}

.contact-page .contact-note {
    color: #64748b !important;
    font-size: 0.9rem !important;
    font-style: italic !important;
    margin: 0 !important;
}

.contact-page .emergency-contact {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #f87171;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.contact-page .emergency-contact h3 {
    color: #dc2626;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-page .emergency-contact p {
    color: #7f1d1d;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-page .emergency-phone {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem 0 !important;
}

.contact-page .emergency-phone a {
    color: #dc2626;
    text-decoration: none;
}

.contact-page .emergency-note {
    font-size: 0.9rem;
    font-style: italic;
    margin: 0 !important;
}

.contact-page .hero-subtitle {
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
    opacity: 0.9 !important;
}

.contact-page .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Contact Content Section */
.contact-page .contact-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}



.contact-page .contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-page .contact-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-page .contact-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-page .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-page .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(139, 195, 74, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(139, 195, 74, 0.1);
    transition: all 0.3s ease;
}

.contact-page .contact-method:hover {
    background: rgba(139, 195, 74, 0.1);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.contact-page .contact-details h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.contact-page .contact-details p {
    color: var(--text-color);
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.contact-page .contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-page .contact-details a:hover {
    color: var(--accent-color);
}

.contact-page .contact-note {
    color: #64748b !important;
    font-size: 0.9rem !important;
    font-style: italic !important;
    margin: 0 !important;
}

.contact-page .contact-icon-main {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(139, 195, 74, 0.3);
}

.contact-page .contact-icon-main svg {
    width: 32px;
    height: 32px;
}

/* Contact Form Section */
.contact-page .contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 195, 74, 0.1);
}

.contact-page .form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-page .form-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-page .form-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-page .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-page .form-group {
    display: flex;
    flex-direction: column;
}

.contact-page .form-group label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-color);
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

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

.contact-page .checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-page .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

.contact-page .checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.contact-page .privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-page .privacy-link:hover {
    text-decoration: underline;
}

.contact-page .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-page .form-actions .btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 160px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.contact-page .form-actions .btn-primary {
    background: var(--primary-color);
    color: white;
}

.contact-page .form-actions .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 46, 31, 0.3);
}

.contact-page .form-actions .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.contact-page .form-actions .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 46, 31, 0.3);
}

/* FAQ Section */
.contact-page .faq-section {
    padding: 80px 0;
    background: white;
}

.contact-page .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-page .section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-page .section-header p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.contact-page .faq-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(139, 195, 74, 0.1);
    transition: all 0.3s ease;
}

.contact-page .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 195, 74, 0.1);
    border-color: var(--accent-color);
}

.contact-page .faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-page .faq-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.contact-page .contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.contact-page .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-page .cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-page .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-page .cta-buttons .btn {
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
    font-size: 1.1rem;
}

.contact-page .cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.contact-page .cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.contact-page .cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-page .cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-page .contact-info,
    .contact-page .contact-form-section {
        padding: 2rem;
    }
    
    .contact-page .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-page .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-page .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-page .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-page .hero-title {
        font-size: 2rem !important;
    }
    
    .contact-page .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .contact-page .contact-content {
        padding: 60px 0;
    }
    
    .contact-page .contact-info,
    .contact-page .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-page .contact-method {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-page .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-page .cta-content h2 {
        font-size: 2rem;
    }
}

/* First 480px media query for contact page - END */

/* FAQ Section */
.contact-page .faq-section {
    padding: 80px 0;
    background: white;
}

.contact-page .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-page .section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-page .section-header p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.contact-page .faq-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(139, 195, 74, 0.1);
    transition: all 0.3s ease;
}

.contact-page .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 195, 74, 0.1);
    border-color: var(--accent-color);
}

.contact-page .faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-page .faq-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.contact-page .contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.contact-page .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-page .cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-page .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-page .cta-buttons .btn {
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
    font-size: 1.1rem;
}

.contact-page .cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.contact-page .cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.contact-page .cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-page .cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-page .contact-info,
    .contact-page .contact-form-section {
        padding: 2rem;
    }
    
    .contact-page .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-page .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-page .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-page .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-page .hero-title {
        font-size: 2rem !important;
    }
    
    .contact-page .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .contact-page .contact-content {
        padding: 60px 0;
    }
    
    .contact-page .contact-info,
    .contact-page .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-page .contact-method {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-page .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-page .cta-content h2 {
        font-size: 2rem;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo img {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
        max-width: 120px;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
}

/* About Page Mobile Responsiveness */
@media (max-width: 768px) {
    /* About Intro Section */
    .about-intro {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .intro-text {
        order: 1;
    }
    
    .intro-visual {
        order: 2;
    }
    
    .lead-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    /* Who We Serve Section */
    .about-page .serve-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-page .serve-item {
        text-align: center;
        padding: 1.5rem;
        margin: 0;
    }
    
    .about-page .serve-item:nth-child(1),
    .about-page .serve-item:nth-child(2),
    .about-page .serve-item:nth-child(3),
    .about-page .serve-item:nth-child(4),
    .about-page .serve-item:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .about-page .serve-icon {
        margin: 0 auto 1rem;
        width: 60px;
        height: 60px;
    }
    
    .about-page .serve-svg {
        width: 30px;
        height: 30px;
    }
    
    .about-page .serve-cta {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .about-page .cta-decoration {
        margin-bottom: 1rem;
    }
    
    .about-page .cta-svg {
        width: 40px;
        height: 40px;
    }
    
    .about-page .cta-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Philosophy Section */
    .about-page .philosophy-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-page .philosophy-item {
        text-align: center;
        padding: 1.5rem;
    }
    
    .about-page .philosophy-item-featured {
        order: -1;
    }
    
    .about-page .philosophy-number {
        margin: 0 auto 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .about-page .philosophy-cta {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .about-page .cta-decoration-left,
    .about-page .cta-decoration-right {
        display: none;
    }
    
    /* Services Overview Section - Enhanced Mobile Styles */
    .services-masonry {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .service-overview-card {
        grid-column: 1 !important;
        grid-row: auto !important;
        padding: 1.5rem;
        text-align: center;
        margin: 0;
        border-left: none;
        border-top: 4px solid var(--primary-color);
    }
    
    .service-overview-card.service-card-tall,
    .service-overview-card.service-card-wide {
        grid-column: 1 !important;
        grid-row: auto !important;
        background: white;
    }
    
    .service-overview-card .service-icon {
        margin: 0 auto 1rem;
        width: 60px;
        height: 60px;
    }
    
    .service-overview-card .service-svg {
        width: 30px;
        height: 30px;
    }
    
    .service-overview-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }
    
    .service-overview-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: var(--text-color);
    }
    
    .service-overview-card .service-link {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background: var(--accent-color);
        color: white;
        text-decoration: none;
        border-radius: var(--border-radius);
        font-weight: 600;
        transition: var(--transition);
        min-height: 44px;
        min-width: 120px;
    }
    
    .service-overview-card .service-link:hover {
        background: var(--accent-dark);
        transform: translateY(-2px);
    }
    
    /* Team Section */
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .team-text {
        order: 1;
    }
    
    .team-image {
        order: 2;
    }
    
    .team-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Why Choose Section */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-item {
        text-align: center;
        padding: 1.5rem;
    }
    
    .why-choose-icon {
        margin: 0 auto 1rem;
        width: 60px;
        height: 60px;
    }
    
    .why-choose-svg {
        width: 30px;
        height: 30px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        min-width: 200px;
        padding: 14px 28px;
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* About Intro Section */
    .about-intro {
        gap: 1.5rem;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    /* Who We Serve Section */
    .about-page .serve-item {
        padding: 1.25rem;
        margin: 0 5px;
    }
    
    .about-page .serve-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-page .serve-svg {
        width: 25px;
        height: 25px;
    }
    
    .about-page .serve-cta {
        padding: 1.5rem 0.5rem;
    }
    
    .about-page .cta-text {
        font-size: 1rem;
    }
    
    /* Philosophy Section */
    .about-page .philosophy-item {
        padding: 1.25rem;
    }
    
    .about-page .philosophy-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .about-page .philosophy-cta {
        padding: 1.5rem 0.5rem;
    }
    
    /* Services Overview Section */
    .service-overview-card {
        padding: 1.25rem;
        margin: 0 5px;
    }
    
    .service-overview-card .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-overview-card .service-svg {
        width: 25px;
        height: 25px;
    }
    
    .service-overview-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-overview-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .service-overview-card .service-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-height: 40px;
        min-width: 100px;
    }
    
    /* Services Section Additional Mobile Improvements */
    .services-overview-section {
        padding: 3rem 0;
    }
    
    .services-overview-section .section-header {
        margin-bottom: 2rem;
    }
    
    .services-overview-section .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .services-overview-section .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Team Section */
    .team-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Why Choose Section */
    .why-choose-item {
        padding: 1.25rem;
        margin: 0 5px;
    }
    
    .why-choose-icon {
        width: 50px;
        height: 50px;
    }
    
    .why-choose-svg {
        width: 25px;
        height: 25px;
    }
    
    /* CTA Section */
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 260px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* About Page Hero Mobile Styles */
@media (max-width: 768px) {
    .about-page .hero-section {
        min-height: 60vh;
        padding: 100px 0 60px;
    }
    
    .about-page .hero-content {
        padding: 0 1rem;
    }
    
    .about-page .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .about-page .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .about-page .hero-badge {
        margin-top: 1.5rem;
    }
    
    .about-page .hero-badge span {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .about-page .hero-section {
        min-height: 50vh;
        padding: 80px 0 40px;
    }
    
    .about-page .hero-title {
        font-size: 2rem;
    }
    
    .about-page .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .about-page .hero-badge span {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* About Page Touch Improvements */
@media (max-width: 768px) {
    .about-page .serve-item,
    .about-page .philosophy-item,
    .service-overview-card,
    .why-choose-item {
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .about-page .serve-item:hover,
    .about-page .philosophy-item:hover,
    .service-overview-card:hover,
    .why-choose-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(51, 78, 61, 0.15);
    }
    
    .about-page .service-link {
        margin-top: auto;
        padding: 0.75rem 1.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Services Page Additional Mobile Improvements */
.services-overview-section {
    padding: 3rem 0;
}

.services-overview-section .section-header {
    margin-bottom: 2rem;
}

.services-overview-section .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.services-overview-section .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Tablet Landscape Optimization for Services */
@media (max-width: 768px) and (orientation: landscape) {
    .services-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .service-overview-card {
        padding: 1.25rem;
    }
    
    .service-overview-card.service-card-tall {
        grid-row: span 2;
    }
    
    .service-overview-card.service-card-wide {
        grid-column: span 2;
    }
}

/* Mobile Touch Improvements for Services */
@media (max-width: 768px) {
    .service-overview-card {
        touch-action: manipulation;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .service-overview-card:active {
        transform: scale(0.98);
    }
    
    .service-overview-card .service-link {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .service-overview-card .service-link:active {
        transform: scale(0.95);
    }
    
    /* Mobile Loading States for Services */
    .service-overview-card {
        position: relative;
        overflow: hidden;
    }
    
    .service-overview-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: mobileShimmer 1.5s infinite;
        z-index: 1;
    }
    
    @keyframes mobileShimmer {
        0% {
            left: -100%;
        }
        100% {
            left: 100%;
        }
    }
    
    /* Mobile Focus States for Services */
    .service-overview-card:focus-within {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
        transform: translateY(-2px);
    }
    
    .service-overview-card .service-link:focus {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
    }
}

/* Enhanced Mobile Footer Styles */
@media (max-width: 768px) {
    /* Footer Content Layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    /* Footer Sections */
    .footer-section {
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        text-align: center;
        margin-bottom: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Footer Social Media */
    .footer-social {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: var(--accent-color);
        transform: translateY(-3px) scale(1.1);
    }
    
    /* Footer Links */
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .footer-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .footer-links a {
        display: block;
        padding: 0.75rem 1.5rem;
        border-radius: var(--border-radius);
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .footer-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent-color);
        transform: translateY(-2px);
    }
    
    .footer-links a::before {
        display: none;
    }
    
    /* Footer Contact Info */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--border-radius);
        min-width: 250px;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .contact-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .contact-icon {
        color: var(--accent-color);
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }
    
    .contact-item span {
        color: #bdc3c7;
        font-size: 0.95rem;
        text-align: center;
    }
    
    /* Footer Newsletter */
    .footer-newsletter {
        padding: 2rem 1rem;
        margin: 2rem 0;
        text-align: center;
    }
    
    .newsletter-content {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .newsletter-content h4 {
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }
    
    .newsletter-content p {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .newsletter-form input {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius);
        background: rgba(255, 255, 255, 0.05);
        color: white;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    
    .newsletter-form input:focus {
        outline: none;
        border-color: var(--accent-color);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 14px 24px;
        background: var(--accent-color);
        color: var(--dark-color);
        border: none;
        border-radius: var(--border-radius);
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        min-height: 48px;
    }
    
    .newsletter-form button:hover {
        background: var(--accent-light);
        transform: translateY(-2px);
    }
    
    /* Footer Bottom */
    .footer-bottom {
        padding: 2rem 1rem;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
    }
    
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-bottom-content p {
        color: #bdc3c7;
        margin: 0;
        font-size: 0.9rem;
    }
    
    .footer-legal {
        display: flex;
        gap: 1rem;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-legal a {
        color: #bdc3c7;
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--border-radius);
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .footer-legal a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent-color);
    }
    
    .separator {
        color: rgba(255, 255, 255, 0.3);
    }
}

@media (max-width: 480px) {
    /* Footer Content */
    .footer-content {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
    
    /* Footer Sections */
    .footer-section {
        padding: 0 0.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1.25rem;
        font-size: 1.4rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        max-width: 350px;
        margin-bottom: 1.25rem;
    }
    
    /* Footer Social Media */
    .footer-social {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    /* Footer Links */
    .footer-links {
        gap: 0.5rem;
    }
    
    .footer-links a {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        min-height: 40px;
    }
    
    /* Footer Contact Info */
    .contact-item {
        padding: 0.875rem 1.25rem;
        min-width: 220px;
        gap: 0.875rem;
    }
    
    .contact-icon {
        width: 18px;
        height: 18px;
    }
    
    .contact-item span {
        font-size: 0.9rem;
    }
    
    /* Footer Newsletter */
    .footer-newsletter {
        padding: 1.5rem 0.5rem;
        margin: 1.5rem 0;
    }
    
    .newsletter-content {
        max-width: 320px;
    }
    
    .newsletter-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.875rem;
    }
    
    .newsletter-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .newsletter-form {
        max-width: 300px;
    }
    
    .newsletter-form input {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .newsletter-form button {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    /* Footer Bottom */
    .footer-bottom {
        padding: 1.5rem 0.5rem;
        margin-top: 1.5rem;
    }
    
    .footer-bottom-content {
        gap: 0.875rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.85rem;
    }
    
    .footer-legal {
        gap: 0.875rem;
    }
    
    .footer-legal a {
        padding: 0.4rem 0.875rem;
        font-size: 0.85rem;
    }
}

/* Employment Form Styles */
.employment-content {
    padding: var(--section-padding);
}

.employment-header {
    text-align: center;
    margin-bottom: 4rem;
}

.employment-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.employment-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.requirement-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.requirement-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.requirement-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.requirement-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.requirement-card ul ul {
    margin-top: 0.75rem;
    margin-left: 1rem;
}

.additional-notes {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
    border-left: 4px solid var(--primary-color);
}

.additional-notes h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.additional-notes ul {
    list-style: none;
    padding: 0;
}

.additional-notes li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.additional-notes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}