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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

.hidden {
    display: none !important;
}

/* Utility Classes */
.blue { color: #2563eb; }
.teal { color: #0891b2; }
.green { color: #059669; }
.orange { color: #ea580c; }
.pink { color: #db2777; }
.purple { color: #9333ea; }
.red { color: #dc2626; }
.yellow { color: #ca8a04; }

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 50;
    transition: all 0.3s ease;
}

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

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

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #2563eb, #0891b2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-icon {
    color: white;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.phone-btn {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease;
}

.phone-btn:hover {
    background: #1d4ed8;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e5e7eb;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
}

.mobile-nav-link {
    background: none;
    border: none;
    text-align: left;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #2563eb;
}

.mobile-phone-btn {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    transition: background-color 0.2s ease;
}

.mobile-phone-btn:hover {
    background: #1d4ed8;
}

/* Hero Section */
.hero {
    padding-top: 5rem;
    background: linear-gradient(135deg, #dbeafe, #f0fdfa);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
    gap: 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
    line-height: 1.1;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #2563eb, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
}

.hero-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.info-icon.teal {
    background: #ccfbf1;
    color: #0891b2;
}

.info-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.info-text {
    font-size: 0.875rem;
    color: #6b7280;
}

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

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: #2563eb;
    color: #2563eb;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-number.blue { color: #2563eb; }
.stat-number.teal { color: #0891b2; }
.stat-number.green { color: #059669; }

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-image {
    order: -1;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 31.25rem;
    background: linear-gradient(135deg, #dbeafe, #ccfbf1);
    border-radius: 1rem;
    overflow: hidden;
}

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

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.floating-card.top-left {
    top: -1rem;
    left: -1rem;
}

.floating-card.bottom-right {
    bottom: -1rem;
    right: -1rem;
}

.floating-card svg {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.floating-card.bottom-right svg {
    color: #dc2626;
}

.floating-card p {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

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

.service-card {
    padding: 2rem;
    border: 2px solid;
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card.blue {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.service-card.blue:hover {
    border-color: #94a3b8;
}

.service-card.teal {
    background: #f0fdfa;
    border-color: #99f6e4;
}

.service-card.teal:hover {
    border-color: #5eead4;
}

.service-card.green {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.service-card.green:hover {
    border-color: #86efac;
}

.service-card.orange {
    background: #fff7ed;
    border-color: #fed7aa;
}

.service-card.orange:hover {
    border-color: #fdba74;
}

.service-card.pink {
    background: #fdf2f8;
    border-color: #f9a8d4;
}

.service-card.pink:hover {
    border-color: #f472b6;
}

.service-card.purple {
    background: #faf5ff;
    border-color: #d8b4fe;
}

.service-card.purple:hover {
    border-color: #c084fc;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.service-icon.teal {
    background: #ccfbf1;
    color: #0891b2;
}

.service-icon.green {
    background: #dcfce7;
    color: #059669;
}

.service-icon.orange {
    background: #fed7aa;
    color: #ea580c;
}

.service-icon.pink {
    background: #fce7f3;
    color: #db2777;
}

.service-icon.purple {
    background: #e9d5ff;
    color: #9333ea;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.check-icon {
    color: #059669;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* Technologies Section */
.technologies {
    padding: 5rem 0;
    background: #f9fafb;
}

.technologies .section-badge {
    background: #ccfbf1;
    color: #0f766e;
}

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

.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tech-icon.yellow {
    background: #fef3c7;
    color: #ca8a04;
}

.tech-icon.red {
    background: #fee2e2;
    color: #dc2626;
}

.tech-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.tech-icon.teal {
    background: #ccfbf1;
    color: #0891b2;
}

.tech-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.tech-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.tech-applications div {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.tech-info {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.tech-stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.tech-stat-number.blue { color: #2563eb; }
.tech-stat-number.teal { color: #0891b2; }
.tech-stat-number.green { color: #059669; }

.tech-stat-label {
    color: #6b7280;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: white;
}

.team .section-badge {
    background: #dcfce7;
    color: #166534;
}

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

.team-card {
    background: linear-gradient(135deg, #dbeafe, #ccfbf1);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.member-img {
    width: 10rem;
    height: 10rem;
    border-radius: 1rem;
    object-fit: cover;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

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

.member-badge {
    position: absolute;
    bottom: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graduation-icon {
    color: white;
}

.member-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.member-title {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-specialties {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.specialty {
    font-size: 0.75rem;
    color: #6b7280;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.team-values {
    background: linear-gradient(135deg, #2563eb, #0891b2);
    padding: 3rem;
    border-radius: 1rem;
    color: white;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value svg {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.value h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.value p {
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f9fafb;
}

.contact .section-badge {
    background: #dbeafe;
    color: #1e40af;
}

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

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.contact-icon.green {
    background: #dcfce7;
    color: #059669;
}

.contact-icon.orange {
    background: #fed7aa;
    color: #ea580c;
}

.contact-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #6b7280;
}

.phone-link {
    color: #059669;
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    color: #047857;
}

.phone-note, .hours-note {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.practical-info {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.practical-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.practical-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.practical-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.practical-icon {
    flex-shrink: 0;
}

.practical-icon.blue { color: #2563eb; }
.practical-icon.green { color: #059669; }
.practical-icon.teal { color: #0891b2; }
.practical-icon.orange { color: #ea580c; }

.accepted-info {
    padding: 1rem;
    background: #dcfce7;
    border-radius: 0.5rem;
}

.accepted-info p {
    font-size: 0.875rem;
    color: #166534;
}

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

.map-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.map-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.map-placeholder {
    height: 16rem;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.interactive-map {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-map:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dbeafe 0%, #ccfbf1 50%, #dcfce7 100%);
    opacity: 0.8;
}

.map-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(8, 145, 178, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.map-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.location-icon {
    width: 3rem;
    height: 3rem;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.location-details p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.distance {
    color: #059669 !important;
    font-weight: 500;
}

.map-interact-btn {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.map-interact-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.map-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.map-btn:hover {
    background: #1d4ed8;
}

.cta-section {
    background: linear-gradient(135deg, #2563eb, #0891b2);
    padding: 2rem;
    border-radius: 1rem;
    color: white;
}

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

.calendar-icon {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.cta-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.cta-btn {
    background: white;
    color: #2563eb;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.cta-btn:hover {
    background: #f9fafb;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 0;
}

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

.footer-brand {
    max-width: 28rem;
}

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

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #2563eb, #0891b2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.footer-nav-title, .footer-services-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav-list, .footer-services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav-link {
    background: none;
    border: none;
    color: #d1d5db;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: white;
}

.footer-services-list li {
    font-size: 0.875rem;
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

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

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-features {
    display: flex;
    gap: 1.5rem;
}

.footer-features span {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-info {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .technologies-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
    }
    
    .footer-features {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding-top: 4rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        position: static;
        margin: 1rem 0;
    }
    
    .hero-image-container {
        height: 20rem;
    }
}

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

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

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