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

:root {
    /* Colors - HSL values for consistency with design system */
    --background: 220 30% 5%;
    --foreground: 220 10% 95%;
    --muted: 220 15% 25%;
    --muted-foreground: 220 10% 70%;
    --card: 220 25% 8%;
    --border: 220 20% 15%;
    
    /* Brand Colors */
    --coral: 14 91% 60%;
    --navy: 220 30% 10%;
    --navy-light: 220 25% 12%;
    --navy-lighter: 220 20% 18%;
    
    /* Gradients */
    --hero-gradient: linear-gradient(135deg, hsl(var(--navy)) 0%, hsl(var(--navy-light)) 50%, hsl(var(--background)) 100%);
    --coral-gradient: linear-gradient(135deg, hsl(var(--coral)) 0%, hsl(14 85% 70%) 100%);
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-family);
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: hsla(var(--background), 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--border));
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

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

.logo-img {
    height: 2rem;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--coral));
}

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

.nav-link {
    text-decoration: none;
    color: hsl(var(--foreground));
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

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

.contact-btn {
    background-color: hsl(var(--coral));
    color: white;
}

.contact-btn:hover {
    background-color: hsl(14 85% 55%);
    color: white;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background-color: hsl(var(--foreground));
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: hsl(var(--foreground));
    transition: var(--transition);
}

.hamburger::before {
    transform: translateY(-6px);
}

.hamburger::after {
    transform: translateY(6px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid hsl(var(--border));
}

.mobile-nav.active {
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-gradient);
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.bg-orb {
    position: absolute;
    background-color: hsl(var(--coral));
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    top: 25%;
    left: 25%;
    width: 8rem;
    height: 8rem;
}

.orb-2 {
    bottom: 33%;
    right: 25%;
    width: 6rem;
    height: 6rem;
    animation-delay: 1s;
}

.orb-3 {
    top: 50%;
    right: 33%;
    width: 4rem;
    height: 4rem;
    animation-delay: 2s;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 64rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 2rem);
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsl(var(--coral));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-btn:hover {
    background-color: hsl(14 85% 55%);
    transform: translateY(-2px);
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin: 0 auto;
}

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

.service-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--navy-lighter));
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: hsl(var(--coral) / 0.5);
}

.service-header {
    position: relative;
    padding: 1.5rem;
}

.service-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-status.operational {
    background-color: rgba(34, 197, 94, 0.2);
    color: rgb(74, 222, 128);
}

.service-status.coming-soon {
    background-color: hsla(var(--coral), 0.2);
    color: hsl(var(--coral));
}

.service-image {
    width: 100%;
    height: 12rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: hsl(var(--navy));
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content {
    padding: 0 1.5rem 1.5rem;
}

.service-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid hsl(var(--coral));
    background-color: transparent;
    color: hsl(var(--coral));
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.service-btn:hover {
    background-color: hsl(var(--coral));
    color: white;
}

.service-btn.disabled {
    border-color: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
    cursor: not-allowed;
}

.service-btn.disabled:hover {
    background-color: transparent;
    color: hsl(var(--muted-foreground));
}

/* Process Section */
.process {
    padding: 6rem 0;
    background-color: hsl(var(--background));
}

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

.process-step {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.process-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background-color: hsl(var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
}

.icon {
    width: 2.5rem;
    height: 2.5rem;
}

.rocket-icon {
    color: hsl(var(--coral));
}

.growth-icon {
    color: rgb(96, 165, 250);
}

.sparkles-icon {
    color: rgb(196, 181, 253);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.process-step:hover .process-title {
    color: hsl(var(--coral));
}

.process-description {
    color: hsl(var(--muted-foreground));
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background-color: hsl(var(--navy-light));
}

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

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.stat-number {
    display: inline;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: hsl(var(--coral));
}

.stat-suffix {
    display: inline;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: hsl(var(--coral));
}

.stat-label {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
}

/* About Page Styles */
.about-hero {
    min-height: 70vh;
}

.story-section {
    padding: 6rem 0;
    background-color: hsl(var(--background));
}

.story-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.story-text {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.8;
}

.story-text strong {
    color: hsl(var(--foreground));
}

.story-text em {
    color: hsl(var(--coral));
    font-style: italic;
}

/* Pillars Section */
.pillars {
    padding: 6rem 0;
    background-color: hsl(var(--navy-light));
}

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

.pillar-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: hsl(var(--coral) / 0.5);
}

.pillar-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background-color: hsl(var(--coral) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--coral));
}

.pillar-icon svg {
    width: 2rem;
    height: 2rem;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.pillar-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy {
    padding: 6rem 0;
    background-color: hsl(var(--background));
}

.philosophy-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

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

.philosophy-item {
    text-align: center;
}

.philosophy-term {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--coral));
    margin-bottom: 1rem;
}

.philosophy-definition {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Mission Statement Section */
.mission-statement {
    padding: 6rem 0;
    background-color: hsl(var(--navy-light));
}

.mission-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    margin: 3rem 0;
}

.mission-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mission-closing {
    margin-top: 3rem;
    padding: 2rem;
    background-color: hsl(var(--card));
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
}

.closing-text {
    font-size: 1.25rem;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    font-style: italic;
}

.closing-welcome {
    font-size: 1.5rem;
    color: hsl(var(--coral));
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--coral-gradient);
    text-align: center;
}

.cta-content {
    max-width: 32rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    color: hsl(var(--coral));
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Cloud Services Page Styles */
.hero-section {
    padding: 8rem 0 6rem;
    background: var(--hero-gradient);
    text-align: center;
}

.hero-content {
    max-width: 48rem;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: hsl(var(--coral));
    color: white;
    border-color: hsl(var(--coral));
}

.btn-primary:hover {
    background-color: hsl(14 85% 55%);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: hsl(var(--coral));
    border-color: hsl(var(--coral));
}

.btn-secondary:hover {
    background-color: hsl(var(--coral));
    color: white;
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: hsl(var(--coral));
}

.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: hsl(var(--navy-light));
}

.bg-primary {
    background: var(--coral-gradient);
}

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

.text-white {
    color: white;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* Main Grid */

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

.main-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.main-card:hover {
    transform: translateY(-5px);
    border-color: hsl(var(--coral) / 0.5);
}

.main-logo {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: var(--coral-gradient);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.main-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.main-card p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.main-features {
    list-style: none;
    padding: 0;
}

.main-features li {
    color: hsl(var(--coral));
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

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

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    background-color: hsl(var(--coral) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--coral));
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.benefit-item p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Navigation consistency fixes */

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

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--coral));
}

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

.nav-link.active {
    color: hsl(var(--coral));
}

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

.nav-toggle span {
    width: 1.5rem;
    height: 2px;
    background-color: hsl(var(--foreground));
    margin: 3px 0;
    transition: var(--transition);
}

/* Footer */
.footer {
    background-color: hsl(var(--navy));
    padding: 3rem 0 1rem;
    border-top: 1px solid hsl(var(--border));
}

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

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

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

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

.footer-links a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: hsl(var(--coral));
}

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

.footer-logo {
    height: 2rem;
    width: auto;
}

.footer-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

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

.social-links a {
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
    color: hsl(var(--muted-foreground));
}
    font-weight: 500;
    margin-top: 1rem;
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.form-icon {
    width: 24px;
    height: 24px;
    color: #ff6b6b;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 500;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.mail-icon {
    width: 20px;
    height: 20px;
}

.contact-info-wrapper {
    color: white;
}

.contact-info-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-wrapper > p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 107, 0.3);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.method-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.method-content p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.response-time {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.next-steps {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.next-steps h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    color: #e0e0e0;
    font-size: 1rem;
}

/* Map Section */
.map-section {
    margin: 40px 0;
}

.map-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 120px 0 80px;
}

.contact-hero .hero-content {
    text-align: center;
}

.contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transform: translateX(100%);
    opacity: 0;
    transition: var(--transition);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}
}

@media (max-width: 1024px) {
    .contact-grid {
        gap: 60px;
    }
    
    .contact-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-page {
        padding: 60px 0;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .services,
    .process,
    .stats,
    .contact {
        padding: 4rem 0;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .next-steps {
        padding: 25px;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Career Page Styles */
.career-hero {
    background: var(--hero-gradient);
    padding: 8rem 0 4rem;
    text-align: center;
}

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

.benefit-card {
    background-color: hsl(var(--card));
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid hsl(var(--border));
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px hsla(var(--coral), 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.benefit-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

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

.position-card {
    background-color: hsl(var(--card));
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    transition: var(--transition);
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px hsla(var(--coral), 0.1);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.position-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
}

.position-type {
    background-color: hsl(var(--coral));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.position-details {
    margin-bottom: 1rem;
}

.position-details p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.position-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background-color: hsl(var(--muted));
    color: hsl(var(--foreground));
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--coral-gradient);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px hsla(var(--coral), 0.3);
}

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

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--coral-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.step-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Privacy Policy Styles */
.privacy-hero {
    background: var(--hero-gradient);
    padding: 8rem 0 4rem;
    text-align: center;
}

.last-updated {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    margin-top: 1rem;
}

.privacy-content {
    padding: 4rem 0;
}

.privacy-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.toc {
    position: sticky;
    top: 6rem;
    height: fit-content;
    background-color: hsl(var(--card));
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
}

.toc-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
    display: block;
    padding: 0.25rem 0;
}

.toc-list a:hover {
    color: hsl(var(--coral));
}

.privacy-sections {
    max-width: none;
}

.privacy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 6rem;
}

.privacy-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
    border-bottom: 2px solid hsl(var(--border));
    padding-bottom: 0.5rem;
}

.subsection-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: hsl(var(--foreground));
}

.privacy-section p {
    color: hsl(var(--muted-foreground));
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-list {
    margin: 1rem 0 1.5rem 1.5rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

.policy-list li {
    margin-bottom: 0.5rem;
}

.policy-link {
    color: hsl(var(--coral));
    text-decoration: none;
    transition: var(--transition);
}

.policy-link:hover {
    text-decoration: underline;
}

.contact-info-privacy {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background-color: hsl(var(--card));
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
}

.contact-method h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.contact-method p {
    margin: 0;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.privacy-commitment {
    background-color: hsl(var(--card));
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid hsl(var(--coral));
    margin-top: 2rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .privacy-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .toc {
        position: static;
        order: -1;
    }
    
    .benefits-grid,
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-info-privacy {
        grid-template-columns: 1fr;
    }
    
    .position-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}