/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
    position: relative;
}

/* Color Variables */
:root {
    --primary-blue: #1e40af;
    --primary-blue-dark: #1e3a8a;
    --primary-blue-light: #3b82f6;
    --secondary-gray: #6b7280;
    --light-gray: #f3f4f6;
    --dark-gray: #1f2937;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --accent-green: #10b981;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-gray);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--secondary-gray);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.lang-btn:hover {
    border-color: var(--primary-blue);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    margin-top: 80px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 64, 175, 0.85) 0%,
        rgba(16, 185, 129, 0.75) 100%
    ),
    url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 3rem;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-cta .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-cta .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-cta .btn:hover::before {
    left: 100%;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--accent-green), #059669);
    border: none;
    color: var(--white);
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about {
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: var(--dark-gray);
    text-align: center;
    font-weight: 400;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.feature i {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

.feature h4 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
}

.feature p {
    font-size: 1rem;
    margin: 0;
    color: var(--secondary-gray);
    line-height: 1.6;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8fafc 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(30,64,175,0.05)"/></svg>') repeat;
    background-size: 50px 50px;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card.enhanced {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.service-card.enhanced:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.15);
    border-color: var(--accent-green);
}

.service-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service-image.construction {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(30, 64, 175, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><pattern id="construction" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><rect width="40" height="40" fill="%23f3f4f6"/><rect x="5" y="5" width="30" height="30" fill="%23e5e7eb"/></pattern></defs><rect width="400" height="300" fill="url(%23construction)"/><g opacity="0.3"><rect x="50" y="100" width="300" height="150" fill="%23374151"/><polygon points="50,100 200,50 350,100" fill="%23111827"/><rect x="80" y="130" width="60" height="80" fill="%23d1d5db"/><rect x="160" y="130" width="60" height="80" fill="%23d1d5db"/><rect x="240" y="130" width="60" height="80" fill="%23d1d5db"/></g></svg>');
    background-size: cover;
    background-position: center;
}

.service-image.agriculture {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(16, 185, 129, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%2310b981"/><rect x="0" y="200" width="400" height="100" fill="%23059669"/><g opacity="0.4"><circle cx="100" cy="150" r="30" fill="%23065f46"/><circle cx="200" cy="120" r="25" fill="%23065f46"/><circle cx="300" cy="140" r="35" fill="%23065f46"/><rect x="95" y="180" width="10" height="40" fill="%23374151"/><rect x="195" y="145" width="10" height="55" fill="%23374151"/><rect x="295" y="175" width="10" height="45" fill="%23374151"/></g></svg>');
    background-size: cover;
    background-position: center;
}

.service-image.hospitality {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(245, 158, 11, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23f59e0b"/><g opacity="0.4"><rect x="100" y="80" width="200" height="140" fill="%23d97706"/><rect x="120" y="100" width="40" height="60" fill="%23374151"/><rect x="180" y="100" width="40" height="60" fill="%23374151"/><rect x="240" y="100" width="40" height="60" fill="%23374151"/><rect x="150" y="180" width="100" height="40" fill="%23374151"/></g></svg>');
    background-size: cover;
    background-position: center;
}

.service-image.logistics {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(107, 114, 128, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%236b7280"/><g opacity="0.4"><rect x="50" y="150" width="120" height="80" fill="%23374151"/><rect x="200" y="170" width="80" height="60" fill="%23374151"/><circle cx="90" cy="250" r="20" fill="%23111827"/><circle cx="130" cy="250" r="20" fill="%23111827"/><circle cx="240" cy="250" r="20" fill="%23111827"/><rect x="170" y="180" width="30" height="20" fill="%23374151"/></g></svg>');
    background-size: cover;
    background-position: center;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 64, 175, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-overlay i {
    font-size: 3.5rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.service-card.enhanced:hover .service-overlay {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(30, 64, 175, 0.8));
}

.service-card.enhanced:hover .service-overlay i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.service-content {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    border-radius: 2px;
}

.service-content h3 {
    margin: 1.5rem 0 1rem;
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: var(--secondary-gray);
}

/* Process Section */
.process {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.process::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 200 200"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(30,64,175,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 3rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green), var(--primary-blue));
    border-radius: 3px;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 4px solid var(--white);
}

.step-circle::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.timeline-step:nth-child(1) .step-circle::before { content: '1'; }
.timeline-step:nth-child(2) .step-circle::before { content: '2'; }
.timeline-step:nth-child(3) .step-circle::before { content: '3'; }
.timeline-step:nth-child(4) .step-circle::before { content: '4'; }

.step-circle:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, var(--accent-green), #059669);
}

.step-circle i {
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.step-circle:hover i {
    transform: scale(1.1);
}

.step-content {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    max-width: 200px;
}

.timeline-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.12);
    border-color: var(--accent-green);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    border-radius: 16px 16px 0 0;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--secondary-gray);
    line-height: 1.6;
}

/* Responsive adjustments for timeline */
@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .step-circle {
        width: 80px;
        height: 80px;
    }
    
    .step-circle i {
        font-size: 2rem;
    }
    
    .step-content {
        max-width: 280px;
    }
}

/* Benefits Section - Enhanced Design */
.benefits {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(226, 232, 240, 0.95) 100%),
                url('../images/benefits-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.benefit-group {
    width: 100%;
    max-width: 320px;
    padding: 2.5rem 1.8rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* Individual Background Colors for Each Benefit */
.benefit-group.time {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.benefit-group.legality {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: rgba(30, 64, 175, 0.2);
}

.benefit-group.costs {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.benefit-group.support {
    background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
    border-color: rgba(139, 92, 246, 0.2);
}

.benefit-group.quality {
    background: linear-gradient(135deg, #fef7cd 0%, #fef3c7 100%);
    border-color: rgba(251, 191, 36, 0.2);
}

.benefit-group.experience {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-color: rgba(168, 85, 247, 0.2);
}

.benefit-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.benefit-group:hover::before {
    transform: scaleX(1);
}

.benefit-group:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.benefit-group.time:hover {
    border-color: #f59e0b;
    box-shadow: 0 30px 80px rgba(245, 158, 11, 0.2);
}

.benefit-group.legality:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 30px 80px rgba(30, 64, 175, 0.2);
}

.benefit-group.costs:hover {
    border-color: var(--accent-green);
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.2);
}

.benefit-group.support:hover {
    border-color: #8b5cf6;
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.2);
}

.benefit-group.quality:hover {
    border-color: #fbbf24;
    box-shadow: 0 30px 80px rgba(251, 191, 36, 0.2);
}

.benefit-group.experience:hover {
    border-color: #a855f7;
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.benefit-group.time .benefit-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.benefit-group.legality .benefit-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
}

.benefit-group.costs .benefit-icon {
    background: linear-gradient(135deg, var(--accent-green), #059669);
}

.benefit-group.support .benefit-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.benefit-group.quality .benefit-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.benefit-group.experience .benefit-icon {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.benefit-group:hover .benefit-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.benefit-group h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.benefit-group p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--secondary-gray);
    line-height: 1.6;
    font-weight: 400;
}

/* Benefits Responsive Design */
@media (max-width: 1024px) {
    .benefits-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .benefits-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .benefit-group {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i {
        font-size: 1.8rem;
    }
    
    .benefit-group h3 {
        font-size: 1.2rem;
    }
    
    .benefit-group p {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.contact::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 300 300"><defs><pattern id="contact-pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(30,64,175,0.04)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23contact-pattern)"/></svg>');
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group select {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    /* Select-specific styles will be handled by .enhanced-select */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.enhanced-select {
    background: var(--white) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236b7280" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>') no-repeat right 1rem center;
    background-size: 1.2rem;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    padding-right: 3rem;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Remove all native styling */
.enhanced-select::-ms-expand {
    display: none !important;
}

.enhanced-select::-webkit-appearance {
    -webkit-appearance: none !important;
}

.enhanced-select:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
    background: var(--white) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2310b981" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>') no-repeat right 1rem center;
    background-size: 1.2rem;
}

/* Completely reset option styling */
.enhanced-select option {
    background: var(--white) !important;
    color: var(--dark-gray) !important;
    padding: 0.5rem !important;
    border: none !important;
    outline: none !important;
}

.enhanced-select option:checked {
    background: var(--accent-green) !important;
    color: var(--white) !important;
}

.enhanced-select option:hover {
    background: var(--light-gray) !important;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info {
    padding: 2rem 0;
    position: relative;
}

.contact-info h3 {
    margin-bottom: 2.5rem;
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.12);
    border-color: var(--accent-green);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}

/* WhatsApp specific styling */
.contact-item i.fa-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-green), #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.contact-item:hover i.fa-whatsapp {
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-item div h4 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item div p {
    margin: 0;
    color: var(--secondary-gray);
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive adjustments for contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item i {
        width: 50px;
        height: 50px;
/* Submit Button Enhancement */
.submit-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-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;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-green), #059669);
    transform: translateY(-3px);
/* Additional Depth and Shadows Enhancement */

/* Enhanced Navigation */
.nav {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

/* Enhanced Section Titles */
.section-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced Cards and Elements */
.card, .feature, .service-card, .benefit-group, .timeline-step {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover, .feature:hover, .service-card:hover, .benefit-group:hover, .timeline-step:hover {
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
}

/* Enhanced Buttons */
.btn, .cta-button, .submit-btn {
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover, .cta-button:hover, .submit-btn:hover {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Enhanced Icons */
.icon, .feature i, .service-overlay i, .benefit-icon i, .step-circle i, .contact-item i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Enhanced Text Elements */
h1, h2, h3 {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Enhanced Form Elements */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Enhanced Responsive Design for All Improvements */

/* Mobile-first responsive enhancements */
@media (max-width: 480px) {
    /* Hero Section Mobile */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem;
    }
    
    /* About Section Mobile */
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 2rem 1.5rem;
    }
    
    .feature i {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    /* Services Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-overlay i {
        font-size: 2.5rem;
    }
    
    /* Benefits Section Mobile */
    .benefits-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-group {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    /* Container adjustments */
    .container {
        padding: 0 1rem;
    }
    
    /* Section padding adjustments */
    .section {
        padding: 3rem 0;
    }
    
    /* Typography adjustments */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    /* Navigation mobile */
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Process timeline mobile adjustments */
    .process-timeline {
        padding: 2rem 0;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* Enhanced mobile shadows */
    .card:hover, .feature:hover, .service-card:hover, .benefit-group:hover {
        box-shadow: 0 15px 40px rgba(30, 64, 175, 0.12);
        transform: translateY(-5px) scale(1.01);
    }
    
    /* Mobile button adjustments */
    .btn, .cta-button, .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Mobile form adjustments */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Mobile contact adjustments */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-item i {
        margin-bottom: 0.5rem;
    }
}

/* Tablet responsive enhancements */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .timeline-step {
        flex: 0 0 calc(50% - 1rem);
        max-width: 300px;
    }
}

/* Large screen enhancements */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefits-showcase {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Print styles */
@media print {
    .nav, .footer, .cta-buttons {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
        padding: 1rem 0;
    }
/* About Us Responsive Layout Adjustments */
@media (max-width: 1023px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .feature {
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .feature {
        max-width: 350px;
    }
}

    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}

/* Enhanced Footer */
.footer {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

/* Layered Shadow System */
.shadow-sm { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }
.shadow-lg { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); }
.shadow-xl { box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15); }

/* Hover Shadow Enhancements */
.shadow-hover:hover { box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15); }
.shadow-hover-green:hover { box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15); }

    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}
