/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary-color: #00C851; /* Bright Professional Green */
    --primary-hover: #00A847;
    --primary-light: rgba(0, 200, 81, 0.1);
    --secondary-color: #f5f5f5; /* Light Grey */
    --background-color: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #4a5568;
    --text-muted: #718096;
    --border-color: #e2e8f0;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00C851 0%, #00A847 100%);
    --gradient-primary-soft: linear-gradient(135deg, rgba(0, 200, 81, 0.8) 0%, rgba(0, 168, 71, 0.9) 100%);
    --gradient-hero: linear-gradient(135deg,
        rgba(0, 200, 81, 0.03) 0%,
        rgba(245, 245, 245, 0.8) 25%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(0, 200, 81, 0.02) 100%);
    --gradient-card: linear-gradient(145deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%);

    /* Animated gradients */
    --gradient-animated: linear-gradient(-45deg,
        rgba(0, 200, 81, 0.1) 0%,
        rgba(255, 255, 255, 0.8) 25%,
        rgba(245, 245, 245, 0.9) 50%,
        rgba(0, 200, 81, 0.05) 75%,
        rgba(255, 255, 255, 0.7) 100%);

    /* Glass morphism */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--gradient-animated);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
    cursor: pointer;
}

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

/* Header with Enhanced Glass Effect */
.header {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

.header.scrolled {
    background: #00C851 !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.25) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
}

.nav {
    padding: 1.25rem 0;
    transition: padding 0.3s ease;
}

.header:not(.scrolled) .nav {
    padding: 2rem 0;
}

.header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header:not(.scrolled) .nav-cta {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header:not(.scrolled) .nav-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    position: relative;
    z-index: 10;
}

.logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00E660 0%, #ffffff 100%);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: calc(100% - 24px);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--text-dark) !important;
    font-weight: 700;
    margin-left: 1rem;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-cta::before {
    display: none;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background:
        linear-gradient(0deg, transparent 20%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 52%, transparent 80%),
        linear-gradient(45deg, transparent 20%, rgba(255, 255, 255, 0.6) 48%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 52%, transparent 80%),
        linear-gradient(90deg, transparent 20%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 52%, transparent 80%),
        linear-gradient(135deg, transparent 20%, rgba(255, 255, 255, 0.6) 48%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 52%, transparent 80%),
        linear-gradient(180deg, transparent 20%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 52%, transparent 80%),
        linear-gradient(225deg, transparent 20%, rgba(255, 255, 255, 0.6) 48%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 52%, transparent 80%),
        linear-gradient(270deg, transparent 20%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 52%, transparent 80%),
        linear-gradient(315deg, transparent 20%, rgba(255, 255, 255, 0.6) 48%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 52%, transparent 80%);
    border-radius: 50px;
    z-index: -1;
    opacity: 0.7;
}

.nav-cta:hover,
.nav-cta:focus {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--text-dark) !important;
    border: none !important;
    outline: none !important;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 8px 25px rgba(0, 0, 0, 0.15);
}

.header.scrolled .nav-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    color: var(--text-dark) !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.header.scrolled .nav-cta:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
    color: var(--text-dark) !important;
    border: none !important;
    outline: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    padding: 10px;
    background: none;
    border: none;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.header.scrolled .bar {
    background-color: rgba(255, 255, 255, 1);
}

/* Hero Section with Really Cool Gradient */
.hero {
    position: relative;
    padding: 120px 0 100px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(-45deg,
        #00C851 0%,
        #00E660 15%,
        #33F373 30%,
        #66F799 45%,
        #c6f6d5 60%,
        #f0fdf4 75%,
        #e8f5e8 85%,
        #00C851 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 40%,
        rgba(0, 200, 81, 0.1) 80%,
        rgba(0, 200, 81, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%,
        rgba(0, 200, 81, 0.8) 0%,
        rgba(0, 200, 81, 0.4) 30%,
        transparent 60%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; transform: scale(1); }
    2% { opacity: 0.4; transform: scale(1.1); }
    4% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-hover) 50%,
        var(--text-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
    color: white;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Floating Particles Effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 4s; }
.particle:nth-child(3) { left: 50%; animation-delay: 8s; }
.particle:nth-child(4) { left: 70%; animation-delay: 12s; }
.particle:nth-child(5) { left: 90%; animation-delay: 16s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 20%; animation-delay: 2s; }
.particle:nth-child(8) { left: 40%; animation-delay: 6s; }
.particle:nth-child(9) { left: 80%; animation-delay: 14s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Services Preview with Enhanced Interactions */
.services-preview {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(245, 245, 245, 0.8) 0%, 
        rgba(255, 255, 255, 0.9) 50%,
        rgba(245, 245, 245, 0.8) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 200, 81, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 200, 81, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-icon i {
    font-size: 2.2rem;
    color: white;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(0, 200, 81, 0.05);
    cursor: pointer;
}

.service-link:hover {
    color: white;
    background: var(--gradient-primary);
    transform: translateX(4px);
}

.service-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* About Section with Two-Column Layout */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(245, 245, 245, 0.8) 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

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

.about-illustration {
    position: relative;
    width: 300px;
    height: 300px;
}

.tech-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 20px;
    background: var(--gradient-primary);
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    border-radius: 50%;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
    transform: rotate(45deg);
}

.shape-3 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
    border-radius: 10px;
}

.shape-4 {
    width: 50px;
    height: 50px;
    top: 10%;
    right: 25%;
    animation-delay: 4.5s;
    border-radius: 25%;
}

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

.about-text-content {
    text-align: left;
}

.about-text-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-text-content .section-title::after {
    left: 0;
    transform: none;
}

.about-text {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Services Page Styles with Smaller Hero */
.services-hero,
.contact-hero {
    position: relative;
    padding: 140px 0 60px;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(-45deg,
        #00C851 0%,
        #00E660 15%,
        #33F373 30%,
        #66F799 45%,
        #c6f6d5 60%,
        #f0fdf4 75%,
        #e8f5e8 85%,
        #00C851 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.services-hero::after,
.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 30%,
        rgba(0, 200, 81, 0.1) 70%,
        rgba(0, 200, 81, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.services-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(0, 200, 81, 0.1) 0%, 
        transparent 50%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

.services-hero .container,
.contact-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.375rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.services-detail {
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
}

.service-detail {
    position: relative;
    padding: 6rem 0;
    margin: 0;
    scroll-margin-top: 120px;
}

.service-detail:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 200, 81, 0.2) 20%, 
        rgba(0, 200, 81, 0.4) 50%, 
        rgba(0, 200, 81, 0.2) 80%, 
        transparent 100%);
}

.service-detail:nth-child(even) {
    background: linear-gradient(135deg, 
        rgba(245, 245, 245, 0.3) 0%, 
        rgba(255, 255, 255, 0.8) 100%);
}

.service-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.3s ease;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail:hover .service-icon-large::before {
    opacity: 0.3;
}

.service-detail:hover .service-icon-large {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.service-icon-large i {
    font-size: 3.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-detail:hover .service-icon-large i {
    transform: scale(1.1);
}

.service-detail h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.service-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 500px;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    color: var(--text-light);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-features li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.service-features i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    min-width: 20px;
}

.services-cta {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-hover) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%);
    animation: rotate 20s linear infinite;
}

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

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.services-cta .cta-button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.services-cta .cta-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info */
.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-text p {
    color: var(--text-light);
    margin: 0;
}

.contact-cta {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
}

.contact-cta h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--text-light);
    margin: 0;
}

/* Map */
.map-section {
    margin-top: 4rem;
}

.map-section h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-description {
    color: #cccccc;
    margin: 0;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cccccc;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #cccccc;
}

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

    .hero-particles {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        margin-top: 0;
        padding-top: 90px;
        flex-direction: column;
        background: rgba(0, 168, 71, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-top: 1px solid rgba(0, 200, 81, 0.2);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
        z-index: 1000;
        padding-bottom: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.25);
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu .nav-link {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.75rem 2rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .nav-menu .nav-cta {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        color: var(--text-dark) !important;
        font-weight: 700;
        margin: 0.75rem 1rem 0 1rem;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu .nav-cta::before {
        content: '';
        position: absolute;
        top: -40px;
        left: -40px;
        right: -40px;
        bottom: -40px;
        background:
            linear-gradient(0deg, transparent 20%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 52%, transparent 80%),
            linear-gradient(45deg, transparent 20%, rgba(255, 255, 255, 0.6) 48%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 52%, transparent 80%),
            linear-gradient(90deg, transparent 20%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 52%, transparent 80%),
            linear-gradient(135deg, transparent 20%, rgba(255, 255, 255, 0.6) 48%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 52%, transparent 80%),
            linear-gradient(180deg, transparent 20%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 52%, transparent 80%),
            linear-gradient(225deg, transparent 20%, rgba(255, 255, 255, 0.6) 48%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 52%, transparent 80%),
            linear-gradient(270deg, transparent 20%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 52%, transparent 80%),
            linear-gradient(315deg, transparent 20%, rgba(255, 255, 255, 0.6) 48%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 52%, transparent 80%);
        border-radius: 40px;
        z-index: -1;
        opacity: 0.7;
    }

    .nav-menu .nav-cta:hover {
        background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
        color: var(--text-dark) !important;
        transform: translateY(-2px);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .services-hero,
    .contact-hero {
        padding: 120px 0 50px;
        min-height: 40vh;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .service-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 0 20px;
    }

    .service-content.reverse {
        flex-direction: column;
    }

    .service-detail {
        padding: 4rem 0;
    }

    .service-detail h2 {
        font-size: 2rem;
    }

    .service-description {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .service-icon-large {
        width: 100px;
        height: 100px;
        margin: 0 auto 2rem;
    }

    .service-icon-large i {
        font-size: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .services-hero,
    .contact-hero {
        padding: 100px 0 40px;
        min-height: 35vh;
    }

    .service-card {
        padding: 2rem;
    }

    .services-detail {
        padding: 60px 0;
    }

    .service-detail {
        padding: 3rem 0;
    }

    .contact-content {
        padding: 60px 0;
    }
}

/* About Page Specific Styles */

.about-section {
    margin-bottom: 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.mission-values {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.value-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.expertise-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.expertise-content > p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-area {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.expertise-area:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.expertise-area h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-choose-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.reason-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.reason-number {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reason-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.about-cta {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    border-radius: 20px;
    margin-top: 2rem;
}

.about-cta .cta-content {
    color: white;
}

.about-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.about-cta .cta-button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.about-cta .cta-button:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-text-content {
        text-align: center;
    }

    .about-visual {
        order: -1;
    }

    .about-illustration {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .reason-item {
        flex-direction: column;
        text-align: center;
    }

    .mission-content h2,
    .expertise-content h2,
    .why-choose-content h2,
    .about-cta h2 {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for form submission */
.submit-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-button.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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