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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(24, 194, 184, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #18c2b8;
    border: 2px solid #18c2b8;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #18c2b8;
    color: white;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(24, 194, 184, 0.1), rgba(22, 166, 155, 0.1));
    border: 1px solid rgba(24, 194, 184, 0.2);
    border-radius: 50px;
    color: #18c2b8;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 48px;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 12px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(24, 194, 184, 0.3);
}

.logo-name {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
}

.logo-tagline {
    font-size: 10px;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: #18c2b8;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone {
    color: #666;
    font-weight: 500;
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    margin-top: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #18c2b8;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(24, 194, 184, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(22, 166, 155, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(24, 194, 184, 0.05) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(24, 194, 184, 0.1), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(24, 194, 184, 0.2);
    border-radius: 50px;
    color: #18c2b8;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(24, 194, 184, 0.1);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.hero-description {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-description strong {
    color: #18c2b8;
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    border-radius: 16px;
    color: white;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}

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

.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 32px;
    color: white;
}

.overlay-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-content p {
    opacity: 0.9;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-1 {
    top: -24px;
    left: -24px;
}

.card-2 {
    bottom: -24px;
    right: -24px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-title {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 12px;
    color: #666;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 25%;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(24, 194, 184, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(22, 166, 155, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #666;
}

.feature svg {
    color: #18c2b8;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
}

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

.about-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    gap: 16px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.stat-card .stat-number {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-card .stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(24, 194, 184, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #18c2b8;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-features span {
    background: #f1f5f9;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card:hover .service-features span {
    background: rgba(24, 194, 184, 0.1);
    color: #18c2b8;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(24, 194, 184, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.projects::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(22, 166, 155, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.projects-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    z-index: 2;
}

.projects-container {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.project-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-status {
    background: #10b981;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.project-status:contains("Enterprise") {
    background: #8b5cf6;
}

.project-status:contains("Government") {
    background: #f59e0b;
}

.project-links {
    display: flex;
    gap: 8px;
}

.project-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.project-content {
    padding: 32px;
}

.project-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.project-card:hover .project-content h3 {
    color: #18c2b8;
}

.project-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.project-tech span {
    background: #f1f5f9;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-card:hover .project-tech span {
    background: rgba(24, 194, 184, 0.1);
    color: #18c2b8;
}

.project-url {
    font-size: 12px;
    color: #18c2b8;
    font-weight: 500;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #18c2b8;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -24px;
}

.next-btn {
    right: -24px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #18c2b8;
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 25%;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(24, 194, 184, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22, 166, 155, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.contact-info > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 16px;
    font-weight: 600;
    color: #18c2b8;
    margin-bottom: 4px;
}

.contact-details span {
    font-size: 14px;
    color: #666;
}

.contact-form-container {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-header p {
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #18c2b8;
    box-shadow: 0 0 0 3px rgba(24, 194, 184, 0.1);
}

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

.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 16px;
}

.form-success {
    text-align: center;
    padding: 64px 32px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 24px;
}

.form-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-success p {
    color: #666;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(24, 194, 184, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(22, 166, 155, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-logo .logo-name {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-tagline {
    font-size: 10px;
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d1d5db;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #18c2b8;
}

.contact-item svg {
    color: #18c2b8;
}

.newsletter {
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #374151;
}

.newsletter-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.newsletter-header svg {
    color: #18c2b8;
}

.newsletter-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.newsletter-header p {
    font-size: 12px;
    color: #9ca3af;
}

.newsletter-description {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #18c2b8;
    box-shadow: 0 0 0 3px rgba(24, 194, 184, 0.1);
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 194, 184, 0.3);
}

.newsletter-features {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #9ca3af;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column a:hover {
    color: #18c2b8;
}

.footer-column a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4b5563;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.footer-column a:hover::before {
    background: #18c2b8;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #374151;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: #18c2b8;
}

.social-link span {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #9ca3af;
}

.footer-love {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.footer-love svg {
    color: #ef4444;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #18c2b8;
}

.scroll-top {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 194, 184, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .project-card {
        flex: 0 0 300px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .header-cta .phone {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .floating-card {
        position: static;
        margin: 16px 0;
    }
    
    .about-stats {
        position: static;
        justify-content: center;
        margin-top: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        flex: 0 0 280px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 32px 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .project-card {
        flex: 0 0 260px;
    }
    
    .slider-btn {
        display: none;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-features {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #18c2b8, #16a69b);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #16a69b, #14958a);
}