/* Base styles and variables */
:root {
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --emerald-950: #022c22;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-900: #134e4a;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --blue-400: #60a5fa;
    --purple-400: #c084fc;
    --green-400: #4ade80;
    --red-400: #f87171;
}

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

@keyframes pulse-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

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

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes shake-subtle {
    0%, 100% { transform: translateX(0px); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

@keyframes zoom-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(to bottom right, var(--slate-900), var(--slate-800));
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Main Navigation Bar */
.main-nav {
    background: linear-gradient(to right, var(--emerald-700), var(--teal-600));
    padding: 1rem;
    position: relative;
    z-index: 50;
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 51;
}

@media (min-width: 640px) {
    .logo-container {
        gap: 0.75rem;
    }
}

.logo {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

@media (min-width: 640px) {
    .logo {
        height: 3rem;
    }
}

@media (min-width: 768px) {
    .logo {
        height: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .logo {
        height: 4rem;
    }
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .logo-text {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 1.75rem;
    }
}

/* Burger Menu Button */
.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 51;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .burger-menu {
        display: none;
    }
}

.burger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Burger Menu Animation */
.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Links */
.nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--emerald-700), var(--teal-600));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 50;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        position: static;
        background: transparent;
        flex-direction: row;
        justify-content: flex-end;
        gap: 2rem;
    }
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.25rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
    text-align: center;
}

@media (min-width: 768px) {
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

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

/* Mobile Menu Overlay */
@media (max-width: 767px) {
    .nav-links {
        transform: translateX(-100%);
        opacity: 0;
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Promotional Bar */
.promo-bar {
    background: #059669;
    padding: 0.75rem 1rem;
    position: relative;
    z-index: 40;
}

@media (max-width: 639px) {
    .promo-bar {
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .promo-bar:hover {
        background: #047857;
    }
}

.promo-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

@media (min-width: 640px) {
    .promo-content {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .promo-content {
        justify-content: space-between;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .logo-container {
        gap: 0.75rem;
    }
}

.logo {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

@media (min-width: 640px) {
    .logo {
        height: 3rem;
    }
}

@media (min-width: 768px) {
    .logo {
        height: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .logo {
        height: 4rem;
    }
}

.logo-text {
    font-size: 1rem;
    font-weight: bold;
    color: white;
}

@media (min-width: 640px) {
    .logo-text {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 1.25rem;
    }
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-icon {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 640px) {
    .promo-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.promo-text {
    font-weight: bold;
    font-size: 0.875rem;
    color: white;
}

.promo-text-mobile {
    font-weight: bold;
    font-size: 0.875rem;
    color: white;
    display: none;
}

@media (min-width: 640px) {
    .promo-text {
        font-size: 1rem;
    }
}

@media (max-width: 639px) {
    .promo-text {
        display: none;
    }
    
    .promo-text-mobile {
        display: inline;
    }
}

.promo-divider {
    display: none;
}

@media (min-width: 1024px) {
    .promo-divider {
        display: block;
        color: rgba(255, 255, 255, 0.8);
    }
}

.promo-subtext {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}



@media (min-width: 640px) {
    .promo-subtext {
        font-size: 0.875rem;
    }
}

@media (max-width: 639px) {
    .promo-subtext {
        display: none;
    }
}

.cta-button {
    background: white;
    color: #059669;
    font-weight: bold;
    padding: 0.375rem 1rem;
    border-radius: 0.375rem;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.75rem;
}



@media (min-width: 640px) {
    .cta-button {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 639px) {
    .cta-button {
        display: none;
    }
}

.cta-button:hover {
    background: var(--slate-100);
    transform: scale(1.05);
}

/* Grid Background */
.grid-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(71, 85, 105, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(71, 85, 105, 0.15) 1px, transparent 1px),
        linear-gradient(rgba(34, 197, 94, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
    background-position: 0 0, 0 0, 0 0, 0 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem 8rem;
    z-index: 10;
}

.service-icons {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.icon-container {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to bottom right, var(--slate-700), var(--slate-600));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.icon-container:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.service-icon {
    width: 1.75rem;
    height: 1.75rem;
    stroke-width: 1.5;
}

.service-icon[data-lucide="server"] {
    color: var(--emerald-400);
    animation: pulse-glow 2s ease-in-out infinite;
}

.service-icon[data-lucide="zap"] {
    color: #fbbf24;
    animation: shake-subtle 3s ease-in-out infinite;
}

.service-icon[data-lucide="globe"] {
    color: var(--blue-400);
    animation: rotate-slow 8s linear infinite;
}

.service-icon[data-lucide="workflow"] {
    color: var(--green-400);
    animation: bounce-gentle 2s ease-in-out infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
        margin-bottom: 2rem;
    }
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--emerald-400), var(--teal-300));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 4rem;
        margin-bottom: 3rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: var(--slate-300);
    max-width: 64rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 4rem;
        line-height: 1.75;
        padding: 0;
    }
}

.highlight-emerald { color: var(--emerald-400); font-weight: 600; }
.highlight-blue { color: var(--blue-400); font-weight: 600; }
.highlight-purple { color: var(--purple-400); font-weight: 600; }
.highlight-green { color: var(--green-400); font-weight: 600; }
.highlight-red { color: var(--red-400); font-weight: bold; }

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
        margin-bottom: 5rem;
        padding: 0;
    }
}

.primary-cta {
    background: linear-gradient(to right, var(--emerald-600), var(--emerald-700));
    color: white;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 640px) {
    .primary-cta {
        padding: 1.75rem 2.5rem;
        font-size: 1.25rem;
        width: auto;
    }
}

.primary-cta:hover {
    background: linear-gradient(to right, var(--emerald-700), var(--emerald-800));
    transform: scale(1.05);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1);
}

.secondary-cta {
    background: linear-gradient(to right, var(--slate-100), white);
    color: var(--slate-800);
    font-weight: bold;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid var(--slate-300);
    cursor: pointer;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 640px) {
    .secondary-cta {
        padding: 1.75rem 2.5rem;
        font-size: 1.25rem;
        width: auto;
    }
}

.secondary-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1);
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 80rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        padding: 0;
    }
}

.stat-card {
    text-align: center;
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.7), rgba(51, 65, 85, 0.5));
    border-radius: 0.5rem;
    padding: 1.25rem;
    border: 1px solid rgba(71, 85, 105, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .stat-card {
        padding: 1.5rem;
    }
}

.stat-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }
}

.stat-label {
    color: var(--slate-300);
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 1rem;
    }
}

/* Section Divider */
.section-divider {
    position: relative;
    z-index: 10;
}

.section-divider::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(34, 197, 94, 0.3), transparent);
}

/* Conversion Section */
.conversion-section {
    position: relative;
    padding: 6rem 1rem;
    background: linear-gradient(to bottom right, rgba(6, 78, 59, 0.8), rgba(14, 116, 144, 0.7), rgba(20, 83, 45, 0.8));
    backdrop-filter: blur(4px);
    z-index: 10;
}

.conversion-content {
    max-width: 72rem;
    margin: 0 auto;
}

.conversion-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .conversion-title {
        font-size: 4rem;
    }
}

.key-insight {
    background: linear-gradient(to bottom right, rgba(6, 78, 59, 0.9), rgba(14, 116, 144, 0.8));
    border-radius: 0.75rem;
    padding: 2.5rem;
    border: 1px solid rgba(34, 197, 94, 0.4);
    backdrop-filter: blur(4px);
    margin-bottom: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1);
}

.insight-text {
    font-size: 1.5rem;
    color: var(--emerald-50);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .insight-text {
        font-size: 2rem;
    }
}

.insight-subtext {
    font-size: 1.25rem;
    color: var(--emerald-100);
}

.conversion-subtitle {
    font-size: 1.5rem;
    color: var(--emerald-200);
    font-weight: 500;
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .conversion-subtitle {
        font-size: 2rem;
    }
}

/* Solution Box */
.solution-box {
    background: linear-gradient(to bottom right, rgba(6, 95, 70, 0.8), rgba(13, 148, 136, 0.7));
    border: 2px solid rgba(34, 197, 94, 0.6);
    backdrop-filter: blur(4px);
    margin-bottom: 5rem;
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.solution-box:hover {
    box-shadow: 0 35px 40px -5px rgba(0, 0, 0, 0.1);
}

.solution-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--emerald-100);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
    padding: 3rem 3rem 0;
}

@media (min-width: 768px) {
    .solution-title {
        font-size: 3rem;
        gap: 1.5rem;
    }
}

.solution-icon {
    width: 3rem;
    height: 3rem;
    color: var(--emerald-300);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .solution-icon {
        width: 4rem;
        height: 4rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 3rem 3rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    background: linear-gradient(to bottom right, rgba(6, 95, 70, 0.6), rgba(6, 95, 70, 0.4));
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    color: var(--emerald-400);
    stroke-width: 1.5;
    display: block;
    flex-shrink: 0;
    vertical-align: middle;
    line-height: 1;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: middle;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--emerald-100);
}

.feature-text {
    color: var(--emerald-200);
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(to bottom right, rgba(14, 116, 144, 0.7), rgba(6, 78, 59, 0.6));
    border-radius: 0.75rem;
    padding: 2.5rem;
    border: 1px solid rgba(34, 197, 94, 0.4);
    backdrop-filter: blur(4px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.5rem;
    color: var(--emerald-50);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .cta-text {
        font-size: 2rem;
    }
}

.cta-button-large {
    background: linear-gradient(to right, var(--emerald-600), var(--emerald-700));
    color: white;
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto;
    font-weight: bold;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-button-large {
        padding: 2rem 3rem;
        font-size: 1.5rem;
        gap: 1rem;
    }
}

.cta-button-large:hover {
    background: linear-gradient(to right, var(--emerald-700), var(--emerald-800));
    transform: scale(1.05);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1);
}

.cta-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .cta-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Services Section */
.services-section {
    position: relative;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.9), rgba(31, 41, 55, 0.9));
    backdrop-filter: blur(4px);
    z-index: 10;
}

@media (min-width: 768px) {
    .services-section {
        padding: 6rem 2rem;
    }
}

.services-content {
    max-width: 80rem;
    margin: 0 auto;
    width: 100%;
}

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

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 5rem;
    }
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 4rem;
    }
}

.section-description {
    font-size: 1rem;
    color: var(--slate-300);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.5;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 1.25rem;
        line-height: 1.75;
        padding: 0;
    }
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        padding: 0;
    }
}

/* Service Card */
.service-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom right, rgba(51, 65, 85, 0.8), rgba(71, 85, 105, 0.6));
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    transition: box-shadow 0.3s ease;
}

@media (min-width: 640px) {
    .service-card {
        padding: 2rem;
    }
}

.service-card:hover {
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .service-card:hover {
        transform: translateY(-4px);
    }
}

.service-icon-container {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .service-icon-container {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.5rem;
    }
}

.service-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    stroke-width: 1.5;
}

@media (min-width: 640px) {
    .service-icon {
        width: 2rem;
        height: 2rem;
    }
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .service-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.service-description {
    color: var(--slate-300);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .service-description {
        margin-bottom: 1.5rem;
        line-height: 1.75;
        font-size: 1rem;
    }
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    flex: 1;
}

@media (min-width: 640px) {
    .service-features {
        margin: 0 0 1.5rem;
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .feature-item {
        margin-bottom: 0.75rem;
        font-size: 1rem;
        line-height: 1.75;
    }
}

.feature-dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--emerald-400);
    border-radius: 9999px;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .feature-dot {
        width: 0.5rem;
        height: 0.5rem;
        margin-right: 0.75rem;
    }
}

.service-button {
    width: 100%;
    color: #1e293b;
    font-weight: bold;
    padding: 0.625rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .service-button {
        padding: 0.75rem;
        font-size: 1rem;
    }
}

.service-button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section */
.why-choose-section {
    position: relative;
    padding: 6rem 1rem;
    background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.9), rgba(30, 41, 59, 0.9));
    backdrop-filter: blur(4px);
    z-index: 10;
}

.why-choose-content {
    max-width: 80rem;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: linear-gradient(to bottom right, rgba(51, 65, 85, 0.6), rgba(71, 85, 105, 0.4));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(51, 65, 85, 0.8);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.feature-icon-container {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.2));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    color: var(--emerald-400);
    stroke-width: 1.5;
    display: block;
    flex-shrink: 0;
    vertical-align: middle;
    line-height: 1;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: middle;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--slate-200);
    line-height: 1.75;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 6rem 1rem;
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.8), rgba(31, 41, 55, 0.8));
    backdrop-filter: blur(4px);
    z-index: 10;
}

.testimonials-content {
    max-width: 80rem;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(to bottom right, rgba(51, 65, 85, 0.6), rgba(71, 85, 105, 0.4));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.testimonial-card-link {
    text-decoration: none;
    color: inherit;
}

.testimonial-card:hover {
    background: rgba(51, 65, 85, 0.8);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.testimonial-rating {
    display: flex;
    margin-bottom: 1rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #f59e0b;
    fill: currentColor;
}

.testimonial-text {
    color: var(--slate-200);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, var(--slate-700), var(--slate-600));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
}

.author-name {
    font-weight: 600;
    color: white;
}

.author-title {
    color: var(--slate-200);
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 6rem 1rem;
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.9), rgba(31, 41, 55, 0.9));
    backdrop-filter: blur(4px);
    z-index: 10;
}

.contact-content {
    max-width: 80rem;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--emerald-400);
    stroke-width: 1.5;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--slate-300);
}

.contact-form {
    background: linear-gradient(to bottom right, rgba(51, 65, 85, 0.6), rgba(71, 85, 105, 0.4));
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}

.form-group textarea {
    min-height: 8rem;
    resize: vertical;
}

.submit-button {
    width: 100%;
    background: linear-gradient(to right, var(--emerald-600), var(--emerald-700));
    color: white;
    font-weight: bold;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.submit-button:hover {
    background: linear-gradient(to right, var(--emerald-700), var(--emerald-800));
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Success and Error Messages */
.success-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    animation: slideInDown 0.5s ease-out;
}

.error-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--red-400), #dc2626);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
    animation: slideInDown 0.5s ease-out;
}

.success-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.error-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.success-text {
    font-weight: 500;
    font-size: 0.875rem;
}

.error-text {
    font-weight: 500;
    font-size: 0.875rem;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 0 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald-400);
}

.footer-description {
    color: var(--slate-300);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--slate-300);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--emerald-400);
    transform: translateX(4px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-300);
    font-size: 0.875rem;
}

.contact-icon-small {
    width: 1rem;
    height: 1rem;
    color: var(--emerald-400);
    flex-shrink: 0;
}

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

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

@media (min-width: 640px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.copyright {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 640px) {
    .footer-bottom-links {
        justify-content: flex-end;
    }
}

.footer-bottom-link {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--emerald-400);
}

/* Animation for footer links */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: slideInUp 0.6s ease-out;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: white;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    backdrop-filter: blur(10px);
}

.floating-contact-btn:hover {
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.5);
}

.floating-contact-btn:active {
    transform: translateY(0) scale(0.98);
}

.floating-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.floating-text {
    white-space: nowrap;
}

/* Responsive behavior for floating button */
@media (max-width: 640px) {
    .floating-contact-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .floating-icon {
        width: 1.125rem;
        height: 1.125rem;
    }
}

/* Hide text on very small screens */
@media (max-width: 480px) {
    .floating-text {
        display: none;
    }
    
    .floating-contact-btn {
        padding: 1rem;
        border-radius: 50%;
        width: 3.5rem;
        height: 3.5rem;
        justify-content: center;
    }
} 