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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

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

/* Animated SVG Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

.animated-bg svg {
    width: 100%;
    height: 100%;
    display: block;
}

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

.out-top {
    animation: rotate 20s linear infinite;
    transform-origin: 13px 25px;
    will-change: transform;
}

.in-top {
    animation: rotate 10s linear infinite;
    transform-origin: 13px 25px;
    will-change: transform;
}

.out-bottom {
    animation: rotate 25s linear infinite;
    transform-origin: 84px 93px;
    will-change: transform;
}

.in-bottom {
    animation: rotate 15s linear infinite;
    transform-origin: 84px 93px;
    will-change: transform;
}

.light-blue-blob {
    animation: rotate 18s linear infinite reverse;
    transform-origin: 50px 30px;
    will-change: transform;
}

.very-light-blue-blob {
    animation: rotate 22s linear infinite;
    transform-origin: 60px 40px;
    will-change: transform;
}

/* Scroll Snapping and Animations */
.section {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
    display: block;
    width: 100%;
}

.content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.content.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Indicators */
.scroll-indicators {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.scroll-indicators .indicator {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scroll-indicators .indicator li a {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.scroll-indicators .indicator li a:hover,
.scroll-indicators .indicator li a.active {
    background: #6EB1D6;
    border-color: #6EB1D6;
    transform: scale(1.2);
}

.scroll-indicators .indicator li a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-indicators .indicator li a:hover::after,
.scroll-indicators .indicator li a.active::after {
    opacity: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animation variants for different sections */
.hero.section .content.animate {
    transform: translateY(0);
}

.about.section .content.animate {
    transform: translateX(0);
}

.features.section .content.animate {
    transform: scale(1);
}

.testimonials.section .content.animate {
    transform: translateX(0);
}

.developers.section .content.animate {
    transform: scale(1);
}

.contact.section .content.animate {
    transform: translateY(0);
}

/* Initial states for different animations */
.about.section .content {
    transform: translateX(-50px);
}

.features.section .content {
    transform: scale(0.8);
}

.testimonials.section .content {
    transform: translateX(50px);
}

.developers.section .content {
    transform: scale(0.8);
}

/* Enhanced scroll snapping styles */
.section {
    scroll-snap-stop: always;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

/* Ensure proper stacking for content */
.content {
    z-index: 1;
}

/* Consistent background for all sections to show animated SVG background uniformly */
.hero.section {
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.7) 0%, rgba(27, 88, 134, 0.7) 50%, rgba(55, 118, 161, 0.7) 100%);
}

.about.section {
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.7) 0%, rgba(27, 88, 134, 0.7) 50%, rgba(55, 118, 161, 0.7) 100%);
}

.features.section {
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.7) 0%, rgba(27, 88, 134, 0.7) 50%, rgba(55, 118, 161, 0.7) 100%);
}

.testimonials.section {
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.7) 0%, rgba(27, 88, 134, 0.7) 50%, rgba(55, 118, 161, 0.7) 100%);
}

.developers.section {
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.7) 0%, rgba(27, 88, 134, 0.7) 50%, rgba(55, 118, 161, 0.7) 100%);
}

.contact.section {
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.7) 0%, rgba(27, 88, 134, 0.7) 50%, rgba(55, 118, 161, 0.7) 100%);
}

/* Responsive adjustments for scroll snapping */
@media (max-width: 768px) {
    .scroll-indicators {
        right: 10px;
    }
    
    .scroll-indicators .indicator li a {
        width: 10px;
        height: 10px;
    }
    
    .content {
        padding: 20px;
    }
}

/* Smooth transitions between sections */
.section {
    transition: background 0.5s ease;
}

/* Add scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(110, 177, 214, 0.2);
    z-index: 1002;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6EB1D6, #89CFF1);
    width: 0%;
    transition: width 0.1s ease;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 58, 107, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6EB1D6 0%, #89CFF1 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(110, 177, 214, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.logo-icon span {
    color: white;
    font-size: 20px;
    font-weight: bold;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #6EB1D6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6EB1D6;
    transition: width 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: #003A6B;
    color: white;
    border: 2px solid #1B5886;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #1B5886;
}

.btn-outline {
    background: white;
    color: #003A6B;
    border: 2px solid #1B5886;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background: #f8fafc;
    color: #003A6B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero:not(.section) {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.7) 0%, rgba(27, 88, 134, 0.7) 50%, rgba(55, 118, 161, 0.7) 100%);
    overflow: hidden;
}

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

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.gradient-text {
    background: linear-gradient(135deg, #6EB1D6, #89CFF1, #B8E0F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    display: block;
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

.hero-description {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Mobile-specific elements - hidden on desktop */
.hero-stats-mobile {
    display: none;
}

.hero-buttons-mobile {
    display: none;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 1.5rem;
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid #6EB1D6;
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(110, 177, 214, 0.1), transparent);
    animation: shimmer 3s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.food-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #6b7280;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.card-content {
    margin-bottom: 1.5rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    color: #6b7280;
    font-weight: 500;
}

.metric-value {
    font-weight: 600;
    color: #111827;
}

.metric-value.safe {
    color: #10b981;
}

.card-chart {
    height: 100px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(52, 211, 153, 0.2), rgba(110, 231, 183, 0.1));
    animation: float 6s ease-in-out infinite;
    filter: blur(1px);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(52, 211, 153, 0.2));
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.3), rgba(251, 191, 36, 0.2));
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 25%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(99, 102, 241, 0.2));
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    animation-delay: 1s;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(34, 197, 94, 0.3));
}

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

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.7) 0%, rgba(27, 88, 134, 0.7) 50%, rgba(55, 118, 161, 0.7) 100%);
    position: relative;
}

/* Removed static background pattern - using animated SVG background instead */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    padding: 2rem 0;
}

.contact .section-header {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #6EB1D6 50%, #89CFF1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    line-height: 1.1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #6EB1D6, #89CFF1);
    border-radius: 1px;
}

.section-description {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6EB1D6, #89CFF1, #B8E0F5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6EB1D6, #89CFF1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(110, 177, 214, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(110, 177, 214, 0.4);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.feature-description {
    color: #ffffff;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.7) 0%, rgba(27, 88, 134, 0.7) 50%, rgba(55, 118, 161, 0.7) 100%);
    position: relative;
}

.about::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%2310b981" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.about-description {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.about-feature i {
    color: #10b981;
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.about-visual {
    position: relative;
}

.about-image {
    position: relative;
    text-align: center;
}

.system-image {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.system-image:hover {
    transform: scale(1.02);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    color: #6366f1;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.element-1 {
    top: 20%;
    right: -30px;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1s;
}

.element-3 {
    top: 50%;
    right: -30px;
    animation-delay: 2s;
}

/* Testimonials Section */
.developers {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.7) 0%, rgba(27, 88, 134, 0.7) 50%, rgba(55, 118, 161, 0.7) 100%);
    position: relative;
    overflow: hidden;
}

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

.developers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.developer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.developer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(110, 177, 214, 0.1) 0%, rgba(89, 207, 241, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.developer-card:hover::before {
    opacity: 1;
}

.developer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(110, 177, 214, 0.3);
}

.developer-image {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.dev-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.developer-card:hover .dev-photo {
    border-color: rgba(110, 177, 214, 0.6);
    transform: scale(1.05);
}

.developer-info {
    position: relative;
    z-index: 2;
}

.developer-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.developer-title {
    font-size: 1rem;
    color: #6EB1D6;
    font-weight: 500;
    margin: 0;
}

.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.7) 0%, rgba(27, 88, 134, 0.7) 50%, rgba(55, 118, 161, 0.7) 100%);
    position: relative;
    overflow: hidden;
}

/* Background Design Elements */
.testimonials::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(110, 177, 214, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(89, 207, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Additional decorative circles */
.testimonials .container::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(110, 177, 214, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials .container::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 20%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(89, 207, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Curved background shapes */
.testimonials-grid::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -30px;
    width: 300px;
    height: 200px;
    background: linear-gradient(45deg, rgba(110, 177, 214, 0.03) 0%, transparent 50%);
    border-radius: 50% 20% 60% 30%;
    z-index: 1;
}

.testimonials-grid::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 250px;
    height: 150px;
    background: linear-gradient(-45deg, rgba(89, 207, 241, 0.04) 0%, transparent 50%);
    border-radius: 30% 60% 20% 50%;
    z-index: 1;
}

.testimonials .section-title {
    position: relative;
    display: inline-block;
    color: #ffffff;
    z-index: 2;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #6EB1D6, #89CFF1);
    border-radius: 1px;
}

.testimonials .section-description {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 58, 107, 0.3);
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 450px;
    margin: 2rem 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: visible;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(110, 177, 214, 0.4);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(110, 177, 214, 0.4);
}


/* Curved line connecting the quote icons */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-top-color: rgba(110, 177, 214, 0.6);
    border-right-color: rgba(110, 177, 214, 0.6);
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-style: italic;
    margin-top: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0;
    justify-content: flex-end;
    flex-shrink: 0;
}

.rating i {
    color: #89CFF1;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(110, 177, 214, 0.3);
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(110, 177, 214, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #89CFF1;
    font-size: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

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

.user-details {
    flex: 1;
}

.user-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-company {
    font-size: 0.8rem;
    color: #89CFF1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    padding: 0.75rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number.stat-1 {
    color: #ffffff;
}

.stat-number.stat-2 {
    color: #ffffff;
}

.stat-number.stat-3 {
    color: #ffffff;
}

.stat-number.stat-4 {
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.7) 0%, rgba(27, 88, 134, 0.7) 50%, rgba(55, 118, 161, 0.7) 100%);
    position: relative;
}

/* Removed static background pattern - using animated SVG background instead */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(110, 177, 214, 0.2);
    transition: all 0.3s ease;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6EB1D6, #89CFF1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(110, 177, 214, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.contact-icon::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;
}

.contact-item:hover .contact-icon::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(110, 177, 214, 0.4);
    box-shadow: 0 10px 30px rgba(110, 177, 214, 0.2);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(110, 177, 214, 0.4);
}

.contact-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    margin-top: 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.contact-details p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.9;
}

/* Form Styles */
.form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.form-input:focus {
    outline: none;
    border-color: #6EB1D6;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(110, 177, 214, 0.2);
}

.form-input::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

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

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 60px 0;
    margin-top: 60px;
    border-radius: 20px;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-description {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    max-width: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    border-radius: 50px;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        border-radius: 10px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 58, 107, 0.9) 0%, rgba(27, 88, 134, 0.9) 50%, rgba(55, 118, 161, 0.9) 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(110, 177, 214, 0.3);
}

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

.brand-section {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.logo-shield {
    width: 40px;
    height: 40px;
    background: #10b981;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-description {
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-icons {
    display: flex;
    gap: 1rem;
}

.contact-icon-item {
    display: flex;
    align-items: center;
}

.icon-square {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6EB1D6, #89CFF1);
    box-shadow: 0 4px 12px rgba(110, 177, 214, 0.3);
}

.email-icon {
    background: linear-gradient(135deg, #6EB1D6, #89CFF1);
}

.phone-icon {
    background: linear-gradient(135deg, #6EB1D6, #89CFF1);
}

.location-icon {
    background: linear-gradient(135deg, #6EB1D6, #89CFF1);
}

.icon-square:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(110, 177, 214, 0.4);
}

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

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

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #6EB1D6;
}

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

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 0.95rem;
}

.contact-detail-icon {
    color: #10b981;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: rgba(110, 177, 214, 0.3);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.footer-bottom-left p {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    gap: 2rem;
}

.legal-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #6EB1D6;
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .gradient-text {
        font-size: 3.5rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .gradient-text {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .container {
        padding: 0 25px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .gradient-text {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 58, 107, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

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

    .nav-menu .nav-link {
        color: #ffffff;
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        display: block;
    }



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

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

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

    .nav-buttons {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
    }

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

    .gradient-text {
        font-size: 2.5rem;
        margin-top: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    /* Show mobile-specific elements */
    .hero-stats-mobile {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin: 0.5rem 0;
    }

    .hero-buttons-mobile {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 0.75rem;
    }

    /* Hide desktop elements on mobile */
    .hero-stats {
        display: none;
    }
    
    .hero-buttons {
        display: none;
    }

    .btn-large {
        width: 140px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-visual {
        gap: 0;
        margin: 0.75rem 0;
    }

    .hero-card {
        max-width: 350px;
    }

    .food-image {
        height: 250px;
    }

    .about {
        padding: 2rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .about-description {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    .about-features {
        margin-top: 0.75rem;
    }

    .about-feature {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .about-feature i {
        font-size: 0.9rem;
        width: 14px;
    }

    .system-image {
        max-width: 80%;
        height: auto;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        max-width: 100%;
    }

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

    .developer-card {
        padding: 1.5rem;
    }

    .dev-photo {
        width: 120px;
        height: 120px;
    }

    .developer-name {
        font-size: 1.1rem;
    }

    .developer-title {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 0.75rem;
        border-radius: 10px;
        max-width: 100%;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }

    .feature-title {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .feature-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }

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

    .contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
        gap: 1rem;
        border-radius: 12px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
        font-size: 1.1rem;
    }

    .contact-details h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .contact-details p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .form {
        padding: 1.5rem;
        border-radius: 16px;
    }

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

    .form-input {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

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

    .brand-section {
        max-width: none;
    }

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

    .footer-bottom-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .contact-icons {
        justify-content: center;
    }

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

    .developers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .developer-card {
        padding: 2rem;
    }

    .dev-photo {
        width: 150px;
        height: 150px;
    }

    .developer-name {
        font-size: 1.25rem;
    }

    .developer-title {
        font-size: 1rem;
    }

    /* Pyramid layout for mobile: Kyle at top center, Kian and Mark below */
    .developers-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .developers-grid .developer-card:nth-child(1) {
        order: 2; /* Kian goes to position 2 (bottom left) */
    }

    .developers-grid .developer-card:nth-child(2) {
        order: 1; /* Kyle goes to position 1 (top center) */
    }

    .developers-grid .developer-card:nth-child(3) {
        order: 3; /* Mark goes to position 3 (bottom right) */
    }

    /* Create pyramid bottom row with Kian and Mark side by side - same size as Kyle */
    .developers-grid .developer-card:nth-child(1),
    .developers-grid .developer-card:nth-child(3) {
        display: inline-block;
        width: 100%;
        max-width: 300px;
        margin: 0;
    }

    /* Ensure all cards have the same size */
    .developers-grid .developer-card {
        width: 100%;
        max-width: 300px;
    }

    .feature-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .testimonial-card {
        padding: 0.75rem;
        border-radius: 10px;
    }

    .testimonial-text {
        font-size: 0.7rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    .user-name {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .user-role {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
    }

    .user-company {
        font-size: 0.6rem;
    }

    .rating i {
        font-size: 0.8rem;
    }

    .quote-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        top: -8px;
        left: 20px;
    }

    .user-avatar {
        width: 35px;
        height: 35px;
    }

    .stats-section {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }
}

/* Mobile Medium */
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }

    .gradient-text {
        font-size: 2.2rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-card {
        max-width: 300px;
    }

    .food-image {
        height: 200px;
    }

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

    .developers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .developer-card {
        padding: 1rem;
    }

    .dev-photo {
        width: 100px;
        height: 100px;
    }

    .developer-name {
        font-size: 1rem;
    }

    .developer-title {
        font-size: 0.8rem;
    }

    .feature-card {
        padding: 0.6rem;
        border-radius: 8px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        border-radius: 10px;
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }

    .feature-title {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .feature-description {
        font-size: 0.7rem;
        line-height: 1.3;
    }

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

    .about {
        padding: 1.5rem 0;
    }

    .about-content {
        gap: 0.75rem;
    }

    .about-description {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .about-features {
        margin-top: 0.5rem;
    }

    .about-feature {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        gap: 0.4rem;
    }

    .about-feature i {
        font-size: 0.85rem;
        width: 12px;
    }

    .system-image {
        max-width: 70%;
        height: auto;
    }

    .contact-content {
        gap: 1rem;
    }

    .contact-item {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        gap: 0.75rem;
        border-radius: 10px;
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 1rem;
    }

    .contact-details h4 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .contact-details p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .form {
        padding: 1.25rem;
        border-radius: 12px;
    }

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

    .form-input {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    .stats-section {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
        margin-top: 1rem;
        padding-top: 0.75rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.55rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .testimonial-card {
        padding: 0.6rem;
        border-radius: 8px;
    }

    .testimonial-text {
        font-size: 0.65rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }

    .user-name {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }

    .user-role {
        font-size: 0.6rem;
        margin-bottom: 0.2rem;
    }

    .user-company {
        font-size: 0.55rem;
    }

    .rating i {
        font-size: 0.75rem;
    }

    .quote-icon {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
        top: -6px;
        left: 15px;
    }

    .user-avatar {
        width: 30px;
        height: 30px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
    }

    .gradient-text {
        font-size: 1.8rem;
        margin-top: 0.25rem;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .hero-stats-mobile {
        gap: 1rem;
        margin: 0.5rem 0;
    }

    .hero-buttons-mobile {
        gap: 0.75rem;
        margin-top: 0.5rem;
    }

    .btn-large {
        width: 120px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero-card {
        max-width: 280px;
    }

    .food-image {
        height: 180px;
    }

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

    .feature-card {
        padding: 0.5rem;
        border-radius: 6px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
    }

    .feature-title {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .feature-description {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .form {
        padding: 1.5rem;
    }

    .form-input {
        padding: 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-input {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }

    .testimonial-card {
        padding: 0.5rem;
        border-radius: 6px;
    }

    .testimonial-text {
        font-size: 0.6rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .user-name {
        font-size: 0.65rem;
        margin-bottom: 0.15rem;
    }

    .user-role {
        font-size: 0.55rem;
        margin-bottom: 0.15rem;
    }

    .user-company {
        font-size: 0.5rem;
    }

    .rating i {
        font-size: 0.7rem;
    }

    .quote-icon {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
        top: -5px;
        left: 12px;
    }

    .user-avatar {
        width: 28px;
        height: 28px;
    }

    .user-name {
        font-size: 0.9rem;
    }

    .user-role {
        font-size: 0.8rem;
    }

    .user-company {
        font-size: 0.75rem;
    }

    .stats-section {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.3rem;
        margin-top: 0.75rem;
        padding-top: 0.5rem;
    }

    .stat-number {
        font-size: 0.9rem;
    }

    .stat-label {
        font-size: 0.5rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.25rem;
    }

    .gradient-text {
        font-size: 1.6rem;
        margin-top: 0.25rem;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .hero-stats-mobile {
        gap: 0.75rem;
        margin: 0.25rem 0;
    }

    .hero-buttons-mobile {
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .btn-large {
        width: 100px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .hero-card {
        max-width: 260px;
    }

    .food-image {
        height: 160px;
    }

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

    .developers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }

    .developer-card {
        padding: 0.8rem;
    }

    .dev-photo {
        width: 80px;
        height: 80px;
    }

    .developer-name {
        font-size: 0.9rem;
    }

    .developer-title {
        font-size: 0.7rem;
    }

    .feature-card {
        padding: 0.4rem;
        border-radius: 4px;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        margin-bottom: 0.4rem;
        font-size: 0.7rem;
    }

    .feature-title {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }

    .feature-description {
        font-size: 0.6rem;
        line-height: 1.1;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    .about {
        padding: 1rem 0;
    }

    .about-content {
        gap: 0.5rem;
    }

    .about-description {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .about-features {
        margin-top: 0.4rem;
    }

    .about-feature {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
        gap: 0.3rem;
    }

    .about-feature i {
        font-size: 0.8rem;
        width: 10px;
    }

    .system-image {
        max-width: 60%;
        height: auto;
    }

    .contact-content {
        gap: 0.75rem;
    }

    .contact-item {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
        gap: 0.6rem;
        border-radius: 8px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .contact-details h4 {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .contact-details p {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .form {
        padding: 1rem;
        border-radius: 10px;
    }

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

    .form-input {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }

    .testimonial-card {
        padding: 0.4rem;
        border-radius: 4px;
    }

    .testimonial-text {
        font-size: 0.55rem;
        line-height: 1.1;
        margin-bottom: 0.4rem;
    }

    .user-name {
        font-size: 0.6rem;
        margin-bottom: 0.1rem;
    }

    .user-role {
        font-size: 0.5rem;
        margin-bottom: 0.1rem;
    }

    .user-company {
        font-size: 0.45rem;
    }

    .rating i {
        font-size: 0.65rem;
    }

    .quote-icon {
        width: 20px;
        height: 20px;
        font-size: 0.55rem;
        top: -4px;
        left: 10px;
    }

    .user-avatar {
        width: 25px;
        height: 25px;
    }

    .stats-section {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.25rem;
        margin-top: 0.5rem;
        padding-top: 0.4rem;
    }

    .stat-number {
        font-size: 0.8rem;
    }

    .stat-label {
        font-size: 0.45rem;
    }

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

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

    .footer-bottom-right {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Touch and mobile optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    .contact-item:hover .contact-icon {
        transform: none;
    }
    
    .social-link:hover {
        transform: none;
    }
}

/* Mobile Extra Small */
@media (max-width: 320px) {
    .contact-content {
        gap: 0.5rem;
    }

    .contact-item {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
        border-radius: 6px;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
        border-radius: 6px;
        font-size: 0.8rem;
    }

    .contact-details h4 {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }

    .contact-details p {
        font-size: 0.65rem;
        line-height: 1.1;
    }

    .form {
        padding: 0.75rem;
        border-radius: 8px;
    }

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

    .form-input {
        padding: 0.4rem;
        font-size: 0.7rem;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .gradient-text {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-card {
        border-width: 2px;
    }
    
    .shape {
        filter: blur(0.5px);
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .hero-card,
    .contact-item {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }
    .feature-card:nth-child(5) { animation-delay: 0.5s; }
    .feature-card:nth-child(6) { animation-delay: 0.6s; }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .shape {
        animation: none;
    }
    
    .hero-card::before {
        animation: none;
    }
}

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

/* Loading states and transitions */
.btn:active {
    transform: scale(0.98);
}

.feature-card:active {
    transform: scale(0.98);
}

/* Focus states for accessibility */
.btn:focus,
.form-input:focus,
.nav-link:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: white;
    }
    
    .about {
        background: #f8f9fa;
    }
    
    .feature-card {
        border: 2px solid #000;
    }
}

/* SIMPLE: Clean mobile navigation */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(0, 58, 107, 0.95);
        z-index: 1000;
        padding: 0;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 70px;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .hamburger .bar {
        width: 25px;
        height: 3px;
        background: #ffffff;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 1px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 58, 107, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu .nav-link {
        color: #ffffff;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
    }
    
    .nav-buttons {
        display: none;
    }
    
    /* Hamburger animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

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

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