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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #60a5fa;
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --light-surface: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-light: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

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

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo .logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

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

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('static/node1.webp') center/cover no-repeat;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%239C92AC" fill-opacity="0.05"><path d="m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-form h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.hero-form textarea {
    resize: vertical;
}

.hero-form .btn-block {
    width: 100%;
    margin-top: 0.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
}

/* Launch Special Banner */
.launch-ribbon-wrapper {
    position: relative;
    z-index: 999;
    margin: 20px 0;
    width: 100%;
}

.launch-ribbon {
    position: relative;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 50%, #dc2626 100%);
    width: 100%;
    padding: 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
    border-radius: 0;
}

.ribbon-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    color: white;
    font-weight: 700;
    text-align: center;
    position: relative;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 100%;
}

.rocket-emoji {
    font-size: 2rem;
    animation: rocket-bounce 3s infinite ease-in-out;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes rocket-bounce {
    0%, 100% { transform: scale(1) rotate(-5deg) translateY(0); }
    25% { transform: scale(1.1) rotate(0deg) translateY(-3px); }
    75% { transform: scale(1.05) rotate(5deg) translateY(-1px); }
}

.ribbon-text {
    font-size: 1.1rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.ribbon-text strong {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.ribbon-text small {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 600;
}

.ribbon-cta {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: #dc2626;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-shadow: none;
}

.ribbon-cta:hover {
    background: linear-gradient(145deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Banner */
@media (max-width: 768px) {
    .launch-ribbon-wrapper {
        margin: 15px 0;
    }
    
    .launch-ribbon {
        transform: none;
        margin: 0;
    }
    
    .ribbon-content {
        padding: 15px 40px;
        gap: 15px;
    }
    
    .rocket-emoji {
        font-size: 1.7rem;
    }
    
    .ribbon-text {
        font-size: 1rem;
    }
    
    .ribbon-text strong {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .ribbon-cta {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .launch-ribbon-wrapper {
        margin: 10px 0;
    }
    
    .launch-ribbon {
        margin: 0;
        transform: none;
    }
    
    .ribbon-content {
        flex-direction: column;
        gap: 12px;
        padding: 15px 30px;
    }
    
    .rocket-emoji {
        font-size: 1.5rem;
    }
    
    .ribbon-text {
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.4;
    }
    
    .ribbon-text strong {
        font-size: 1rem;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 2px;
    }
    
    .ribbon-cta {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-surface);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    text-align: center; /* Center text content */
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width calculation */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0; /* Prevent the icon from shrinking */
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: center;
    align-self: stretch; /* Stretch to full width of the card */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    display: inline-block;
    text-align: left;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.service-cta .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    min-width: 120px;
}

/* Homepage Pricing Section */
.homepage-pricing {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 0 10px;
}

.pricing-card-home {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid #e2e8f0;
}

.pricing-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.pricing-card-home.featured-home {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    transform: scale(1.03);
}

.pricing-card-home.featured-home:hover {
    transform: scale(1.03) translateY(-5px);
}

.popular-badge-home {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color) 0%, #1d4ed8 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.popular-badge-home i {
    margin-right: 0.5rem;
}

.card-header-home {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-name-home {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.package-desc-home {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.card-price-home {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.price-display-home {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-display-home .currency-home {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.5rem;
}

.price-display-home .amount-home {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.price-display-home .period-home {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

.price-note-home {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.card-highlights-home {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.highlight-item-home i {
    font-size: 1.125rem;
    color: #10b981;
    flex-shrink: 0;
}

.highlight-item-home span {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.highlight-item-home strong {
    color: var(--accent-color);
    font-weight: 600;
}

.pricing-card-home .btn {
    margin-top: auto;
    text-align: center;
    width: 100%;
}

.pricing-cta-home {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta-home p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-cta-home i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.pricing-cta-home a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pricing-cta-home a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Technologies Section */
/* Technologies Section - Horizontal Scrolling */
.technologies {
    padding: 6rem 0;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow: hidden;
}

.technologies .section-header {
    margin-bottom: 3rem;
}

.technologies .section-title {
    color: var(--text-light);
}

.technologies .section-subtitle {
    color: #cbd5e1;
}

/* Horizontal scroll container */
.tech-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

/* Gradient fade edges */
.tech-scroll-container::before,
.tech-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.tech-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-bg) 0%, transparent 100%);
}

.tech-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-bg) 0%, transparent 100%);
}

/* Scrolling track */
.tech-scroll-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem;
    animation: scroll-left 40s linear infinite;
    width: max-content;
    align-items: stretch;
}

/* Pause animation on hover */
.tech-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-card {
    background: var(--dark-surface);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #334155;
    min-width: 220px;
    flex-shrink: 0;
}

.tech-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: #2d3748;
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.tech-card h4 {
    margin: 1rem 0 0.5rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

.tech-card p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.tech-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2rem;
}

.tech-icon.ubuntu {
    background: linear-gradient(135deg, #E95420 0%, #DD4814 100%);
}

.tech-icon.debian {
    background: linear-gradient(135deg, #A80030 0%, #D70A53 100%);
}

.tech-icon.wordpress {
    background: linear-gradient(135deg, #21759B 0%, #0F3854 100%);
}

.tech-icon.synology {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6600 100%);
}

.tech-icon.shopify {
    background: linear-gradient(135deg, #7AB55C 0%, #5E8B3A 100%);
}

.tech-icon.docker {
    background: linear-gradient(135deg, #2496ED 0%, #0B7EC8 100%);
}

.tech-icon.stripe {
    background: linear-gradient(135deg, #635BFF 0%, #4F46E5 100%);
}

.tech-icon.cloudflare {
    background: linear-gradient(135deg, #F38020 0%, #E8590C 100%);
}

.tech-icon.nginx {
    background: linear-gradient(135deg, #009639 0%, #006B28 100%);
}

.tech-icon.postgresql {
    background: linear-gradient(135deg, #336791 0%, #254B6B 100%);
}

.tech-icon i {
    color: white;
}

.tech-svg {
    width: 2rem;
    height: 2rem;
    filter: brightness(0) invert(1);
}

.tech-png {
    width: 2rem;
    height: 2rem;
    /* No filter applied - shows original colors */
}

.tech-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.tech-card p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-circle-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15), 
                0 0 0 6px rgba(37, 99, 235, 0.06);
    transition: all 0.4s ease;
}

.about-circle-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3), 
                0 0 0 8px rgba(37, 99, 235, 0.12);
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: var(--shadow-heavy);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-surface);
}

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

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

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

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    width: 3.5rem;
    height: 3.5rem;
    background: #1e293b;
    border: 2px solid #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: #334155;
    border-color: #3b82f6;
    color: #60a5fa;
    transform: scale(1.1);
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-size: 1.125rem;
}

.contact-item p {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Proposal Modal */
.proposal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(30, 64, 175, 0.95) 100%);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.proposal-modal.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.proposal-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.proposal-modal-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.proposal-modal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1rem;
}

.close-proposal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-proposal:hover {
    background: #f1f5f9;
    color: var(--text-primary);
    transform: rotate(90deg);
}

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

#proposalForm input,
#proposalForm select,
#proposalForm textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

#proposalForm input:focus,
#proposalForm select:focus,
#proposalForm textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#proposalForm textarea {
    resize: vertical;
    min-height: 100px;
}

.proposal-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.proposal-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.proposal-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .proposal-modal-content {
        padding: 2rem;
        width: 95%;
    }
    
    .proposal-modal-content h2 {
        font-size: 1.5rem;
    }
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-logo .logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #64748b;
}

/* Social Media Icons */
.social-media {
    margin-top: 1.5rem;
}

.social-media h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.social-icons a.bluesky-icon {
    background: #00A8E6;
}

.social-icons a.bluesky-icon:hover {
    background: #0086B3;
    box-shadow: 0 4px 12px rgba(0, 168, 230, 0.3);
}

/* Animations */

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

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent zoom and scale effects on mobile for service cards only */
    .hero-background {
        transform: none !important;
    }
    
    .service-card {
        transform: none !important;
        transition: none !important;
    }
    
    .service-card:hover {
        transform: none !important;
    }
    
    .tech-icon {
        transform: none !important;
    }
    
    .navbar {
        padding: 0.4rem 0; /* Reduced mobile navbar padding to match smaller desktop navbar */
        height: 60px; /* Reduced fixed height for smaller navbar */
    }
    
    .hero {
        margin-top: 60px; /* Use margin instead of padding to truly push content down */
        height: auto; /* Change from calc to auto for mobile */
        min-height: calc(100vh - 60px); /* Minimum height but allow scrolling */
        padding-top: 2rem; /* Small padding for visual spacing */
        padding-bottom: 2rem; /* Add bottom padding */
        align-items: flex-start; /* Align to top instead of center */
        box-sizing: border-box;
    }
    
    .hero-content {
        margin-top: 0; /* Remove extra margin since we're using navbar margin now */
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 1rem; /* Additional top margin */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-form {
        padding: 1.5rem;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .hero-form h3 {
        font-size: 1.25rem;
    }
    
    .hero-form input,
    .hero-form select,
    .hero-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        max-width: 100%;
    }
    
    .hero-form .form-group {
        margin-bottom: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-logo .logo {
        height: 50px; /* Slightly smaller on mobile to fit better */
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    

    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Responsive horizontal scroll - keep animation on mobile */
    .tech-scroll-track {
        animation: scroll-left 30s linear infinite;
    }
    
    .tech-card {
        min-width: 180px;
        padding: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-circle-image {
        width: 100px;
        height: 100px;
        margin-top: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 160px; /* Increased to match the mobile padding adjustment */
    }
    
    .hero-content {
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    

    
    /* Faster scroll on very small screens */
    .tech-scroll-track {
        animation: scroll-left 25s linear infinite;
        gap: 1.5rem;
    }
    
    .tech-card {
        min-width: 160px;
        padding: 1.25rem;
    }
    
    .tech-scroll-container::before,
    .tech-scroll-container::after {
        width: 50px;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.form-message-success {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.form-message-error {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Homepage Pricing Responsive */
@media (max-width: 768px) {
    .homepage-pricing {
        padding: 60px 15px;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto 1.5rem;
        padding: 0 5px;
    }

    .pricing-card-home {
        padding: 1.75rem 1.5rem;
        margin: 0;
    }

    .pricing-card-home.featured-home {
        transform: scale(1);
    }

    .pricing-card-home.featured-home:hover {
        transform: translateY(-5px);
    }

    .package-name-home {
        font-size: 1.375rem;
    }

    .package-desc-home {
        font-size: 0.9rem;
    }

    .price-display-home .amount-home {
        font-size: 2.5rem;
    }

    .pricing-cta-home {
        margin: 1.5rem auto 0;
        padding: 1.25rem;
        width: calc(100% - 20px);
    }

    .pricing-cta-home p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .homepage-pricing {
        padding: 50px 10px;
    }

    .pricing-cards-grid {
        margin: 1.5rem auto 1rem;
        gap: 1.25rem;
        padding: 0;
        width: 100%;
    }

    .pricing-card-home {
        padding: 1.5rem 1.25rem;
        margin: 0;
    }

    .package-name-home {
        font-size: 1.25rem;
    }

    .price-display-home .amount-home {
        font-size: 2.25rem;
    }

    .price-display-home .currency-home {
        font-size: 1.25rem;
    }

    .highlight-item-home {
        gap: 0.65rem;
    }

    .highlight-item-home i {
        font-size: 1rem;
    }

    .highlight-item-home span {
        font-size: 0.9rem;
    }

    .pricing-cta-home {
        margin: 1.25rem auto 0;
        padding: 1rem;
        width: calc(100% - 10px);
    }

    .pricing-cta-home p {
        font-size: 0.875rem;
    }
}

/* Navbar Contact Info */
.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.nav-phone,
.nav-email {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-phone:hover,
.nav-email:hover {
    color: var(--accent-color);
}

.nav-email {
    font-size: 1.1rem;
    padding: 0.4rem 0.6rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
}

.nav-email:hover {
    background: rgba(59, 130, 246, 0.2);
}

/* Mobile navbar contact - show phone prominently, hide email icon */
@media (max-width: 1024px) {
    .nav-contact {
        display: flex;
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .nav-phone {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .nav-email {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-contact {
        margin-right: 0.5rem;
    }
    
    .nav-phone {
        font-size: 0.75rem;
    }
    
    .nav-phone i {
        font-size: 0.8rem;
    }
}

/* ============================================
   LOCATIONS PAGE STYLES
   ============================================ */

/* Locations Hero */
.locations-hero {
    background: url('static/loon.webp') center center/cover no-repeat;
    padding: 140px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.locations-hero .container {
    position: relative;
    z-index: 1;
}

.locations-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.locations-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Locations Content */
.locations-content {
    padding: 80px 0;
    background: #ffffff;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 80px;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.intro-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Location Groups */
.location-group {
    margin-bottom: 80px;
}

.location-group h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.location-group > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 900px;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transition: height 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.location-card:hover::before {
    height: 100%;
}

.location-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.location-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-card:hover h3 a {
    color: var(--primary-color);
}

.location-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 60px 40px;
    border-radius: 16px;
    margin: 80px 0;
}

.why-choose h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-card h3::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Location CTA */
.location-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 16px;
    margin-top: 80px;
    color: white;
}

.location-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.location-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.location-cta .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

.location-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    background: #f0f9ff;
}

/* Responsive Design for Locations Page */
@media (max-width: 768px) {
    .locations-hero {
        padding: 120px 0 60px 0;
    }
    
    .locations-hero h1 {
        font-size: 2rem;
    }
    
    .locations-hero p {
        font-size: 1rem;
    }
    
    .locations-content {
        padding: 60px 0;
    }
    
    .intro-text h2,
    .location-group h2 {
        font-size: 1.875rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose {
        padding: 40px 20px;
        margin: 60px 0;
    }
    
    .why-choose h2 {
        font-size: 1.875rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-cta {
        padding: 60px 20px;
        margin-top: 60px;
    }
    
    .location-cta h2 {
        font-size: 1.875rem;
    }
    
    .location-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .locations-hero h1 {
        font-size: 1.75rem;
    }
    
    .intro-text h2,
    .location-group h2,
    .why-choose h2,
    .location-cta h2 {
        font-size: 1.5rem;
    }
    
    .location-card,
    .benefit-card {
        padding: 1.5rem;
    }
    
    .location-cta .cta-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}
