* {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, .font-display {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navy-gradient {
    background: linear-gradient(135deg, #0a1a3a 0%, #1e3a8a 50%, #3b82f6 100%);
}

.navy-dark {
    background: #0a1a3a;
}

.navy-medium {
    background: #1e3a8a;
}

.navy-light {
    background: #3b82f6;
}

.accent-gradient {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

.text-accent-gradient {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-sleek {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.card-sleek:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.nav-link {
    position: relative;
    padding: 8px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #f97316, #fb923c);
    transition: width 0.4s ease;
    border-radius: 2px;
}

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

.btn-premium {
    background: linear-gradient(135deg, #0a1a3a 0%, #1e3a8a 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 26, 58, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-premium: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: 0.5s;
}

.btn-premium:hover:before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 26, 58, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-icon-circle {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.service-icon-circle {
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    bottom: -8px;
    left: 20%;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 2px;
}

.client-logo-sleek {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.client-logo-sleek:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.hero-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 138, 0.05));
    filter: blur(80px);
    z-index: 0;
}

.hero-shape-1 {
    top: -200px;
    right: -200px;
}

.hero-shape-2 {
    bottom: -200px;
    left: -200px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(251, 146, 60, 0.1));
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.timeline-item:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 24px;
    width: 2px;
    height: calc(100% + 6px);
    background: #e2e8f0;
}

.timeline-item:last-child:after {
    display: none;
}

.stat-card {
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.05), rgba(30, 58, 138, 0.03));
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}


        

        

.solution-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.15);
}


.solution-icon-circle {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.service-icon-circle {
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    bottom: -8px;
    left: 20%;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 2px;
}

.hero-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 138, 0.05));
    filter: blur(80px);
    z-index: 0;
}

.hero-shape-1 {
    top: -200px;
    right: -200px;
}

.hero-shape-2 {
    bottom: -200px;
    left: -200px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(251, 146, 60, 0.1));
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.feature-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #1e3a8a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}

.feature-badge i {
    margin-right: 8px;
    font-size: 12px;
}

.tab-button {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
}

.tab-button.active {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
}

.tab-button:hover:not(.active) {
    border-color: #3b82f6;
    color: #1e3a8a;
}

.solution-header {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.solution-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.8), rgba(30, 58, 138, 0.9));
}

.solution-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, #10b981, #34d399);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8fafc;
}







.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.2);
}

.service-card-premium {
    border: 2px solid #f97316;
    position: relative;
}

.service-card-premium:before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
}

.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.nav-link {
    position: relative;
    padding: 8px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #f97316, #fb923c);
    transition: width 0.4s ease;
    border-radius: 2px;
}

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

.btn-premium {
    background: linear-gradient(135deg, #0a1a3a 0%, #1e3a8a 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 26, 58, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-premium: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: 0.5s;
}

.btn-premium:hover:before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 26, 58, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon-circle {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.service-icon-circle {
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    bottom: -8px;
    left: 20%;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 2px;
}

.hero-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 138, 0.05));
    filter: blur(80px);
    z-index: 0;
}

.hero-shape-1 {
    top: -200px;
    right: -200px;
}

.hero-shape-2 {
    bottom: -200px;
    left: -200px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(251, 146, 60, 0.1));
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.service-header {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.9), rgba(30, 58, 138, 0.95));
}

.service-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 30px;
}

.process-step:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 60px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #e2e8f0;
}

.process-step:last-child:before {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.tech-stack-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.tech-stack-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.1);
}

.tech-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 24px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #1e3a8a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}

.feature-badge i {
    margin-right: 8px;
    font-size: 12px;
}

.tab-button {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
}

.tab-button.active {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    border-color: #fb923c;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.15);
}

.tab-button:hover:not(.active) {
    border-color: #fb923c;
    color: #1e3a8a;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    color: #e2e8f0;
    font-family: serif;
    line-height: 1;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
}

.pricing-card-popular {
    border: 2px solid #f97316;
    position: relative;
}

.pricing-card-popular:before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}







.contact-icon-circle {
  background: linear-gradient(135deg, #f97316, #fb923c);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 4px;
  bottom: -8px;
  left: 20%;
  background: linear-gradient(90deg, #f97316, #fb923c);
  border-radius: 2px;
}

.hero-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 138, 0.05));
  filter: blur(80px);
  z-index: 0;
}

.hero-shape-1 {
  top: -200px;
  right: -200px;
}

.hero-shape-2 {
  bottom: -200px;
  left: -200px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(251, 146, 60, 0.1));
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: white;
  font-size: 16px;
  min-height: 150px;
  resize: vertical;
  transition: all 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1e3a8a;
}

.form-select {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: white;
  font-size: 16px;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231e3a8a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 20px;
}

.form-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(10, 26, 58, 0.05), rgba(30, 58, 138, 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  transform: translateY(-3px);
}

.office-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.success-message {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: none;
}

.error-message {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: none;
}

.working-hours {
  background: linear-gradient(135deg, rgba(10, 26, 58, 0.05), rgba(30, 58, 138, 0.03));
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.hour-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.hour-item:last-child {
  border-bottom: none;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 20px;
}





/* Waitlist Modal Styles */
.waitlist-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: none;
    outline: none;
}

.waitlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(249, 115, 22, 0.5);
    }
    100% {
        box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 58, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.waitlist-modal {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #64748b;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #1e3a8a;
}

.waitlist-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
}

.waitlist-icon i {
    color: white;
    font-size: 32px;
}

.waitlist-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #0a1a3a;
    margin-bottom: 12px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.waitlist-content p {
    color: #64748b;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.6;
}

.waitlist-form {
    margin-bottom: 24px;
}

.waitlist-input {
    width: 100%;
    padding: 18px 24px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.waitlist-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.waitlist-submit {
    width: 100%;
    padding: 18px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

.waitlist-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(249, 115, 22, 0.3);
}

.waitlist-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

.waitlist-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

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

.waitlist-success .success-icon i {
    color: white;
    font-size: 32px;
}

.waitlist-success h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0a1a3a;
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.waitlist-success p {
    color: #64748b;
    margin-bottom: 24px;
}

.waitlist-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.waitlist-benefit {
    background: #f1f5f9;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.waitlist-benefit i {
    color: #3b82f6;
}

.waitlist-count {
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.05), rgba(30, 58, 138, 0.03));
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-top: 24px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.waitlist-count-number {
    font-size: 36px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.waitlist-count-text {
    color: #64748b;
    font-size: 14px;
}

.waitlist-error {
    color: #ef4444;
    margin-top: 8px;
    font-size: 14px;
    text-align: center;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Make sure body doesn't scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

