/* Reset & base styles */
:root {
    --primary-color: #4dabf7;
    --secondary-color: #2d7cc7;
    --text-color: #2c3e50;
    --light-color: #f8f9fa;
    --dark-overlay: rgba(0, 0, 0, 0.7);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
    padding: 40px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 1rem;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta.primary {
    background-color: var(--primary-color);
    color: white;
}

.cta.primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta.secondary {
    background-color: transparent;
    border-color: white;
    color: white;
}

.cta.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

.carousels-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.question-step, .contact-details-step { display: none; }
.survey-section .survey-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}
.survey-section .survey-options label {
    background: transparent;
    padding: 0.8rem 1rem;
    border-radius: 0.8rem;
    cursor: pointer;
    box-shadow: none;
    transition: transform 120ms ease, border 150ms ease;
    border: 1px solid #344250;
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}
.survey-options input[type="radio"] { margin-right: 0.4rem; accent-color: #4dabf7; }

/* Style for 'Other' text input */
.other-input-container {
    margin: 10px 0 15px 0;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.other-input-container input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #344250;
    border-radius: 8px;
    background-color: #2a2d31;
    color: #e9ecef;
    font-size: 1rem;
}

.other-input-container input[type="text"]:focus {
    outline: none;
    border-color: #4dabf7;
    box-shadow: 0 0 0 2px rgba(77, 171, 247, 0.2);
}

.other-input-container input[type="text"]::placeholder {
    color: #6c757d;
    font-style: italic;
}
@media (max-width: 400px) {
    .survey-options { grid-template-columns: 1fr; }
}

/* Survey Section */
.survey-section {
    width: 100%;
    padding: 2rem 5vw; /* Increased side padding */
    background: #1f2122;
    box-shadow: 0 -8px 32px #0006 inset, 0 8px 32px #0006;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    box-sizing: border-box; /* Include padding in width calculation */
}
.survey-wrap {
    max-width: 800px; /* Wider max-width */
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.survey-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4dabf7;
    margin-bottom: 1rem;
}
.survey-description {
    font-size: 1.2rem;
    color: #fff9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.contact-form {
    background: transparent; /* remove card */
    padding: 0; /* remove inner padding to feel full-width */
    border-radius: 0;
    box-shadow: none; /* remove shadow */
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.2rem; /* more airy spacing between steps */
    align-items: center; /* center step contents */
}
.question-label {
    display: block;
    padding: 0; /* remove excessive inner padding */
    font-size: 1.3rem;
    font-weight: 600;
    color: #a3d3ff;
    margin-bottom: 2rem; /* add space before variants */
    text-align: center; /* center titles */
}
.survey-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem; /* slightly larger gap between answers */
    max-width: 820px;
    margin: 0 auto; /* center answers area */
}
.survey-options label {
    background: transparent; /* remove gray tile */
    padding: 1rem 1.2rem;
    border-radius: 0.8rem;
    cursor: pointer;
    box-shadow: none; /* no shadow tile */
    transition: all 150ms ease;
    border: 1px solid #344250; /* subtle outline */
    text-align: center;
}
.survey-section .survey-options label:hover {
    transform: translateY(-2px);
    box-shadow: none;
    border-color: #4dabf7;
}
.survey-section .survey-options input[type="radio"] { margin-right: 0.5rem; accent-color: #4dabf7; }
.survey-section .survey-options label.selected {
    border-color: #4dabf7;
    background: transparent; /* keep transparent even when selected */
    box-shadow: none;
}

/* Input steps styled like options */
.survey-section .survey-input input[type="text"],
.survey-section .survey-input input[type="email"],
.survey-section .survey-input input[type="tel"] {
    width: 100%;
    background: transparent; /* remove gray fill */
    color: #eaeef5;
    border: 1px solid #344250; /* subtle outline */
    border-radius: 0.8rem;
    padding: 1rem 1.2rem;
    outline: none;
    box-shadow: none; /* no tile shadow */
    transition: box-shadow .15s ease, border-color .15s ease, background .15s ease, transform .15s ease;
}
.survey-section .survey-input { max-width: 700px; margin: 0 auto; }
.survey-section .survey-input input::placeholder { color: #9fb8d3; opacity: .8; }
.survey-section .survey-input input:focus {
    border-color: #4dabf7;
    background: transparent;
    box-shadow: none;
    transform: translateY(-1px);
}
.survey-helper {
    display: block;
    color: #b8c7d9;
    opacity: .8;
    font-size: 0.9rem;
    margin-top: 0.4rem;
}
.contact-details-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-fields-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 600px) {
    .contact-fields-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.contact-note {
    display: block;
    margin-bottom: 1rem;
    opacity: .8;
    font-size: 0.9rem;
}
.survey-submit-btn {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 2rem;
    background: linear-gradient(90deg, #4dabf7 60%, #74c0fc 100%);
    color: #0b172a;
    font-weight: bold;
    box-shadow: 0 2px 16px #4dabf755;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}
.survey-submit-btn:hover {
    box-shadow: 0 0 30px 8px #4dabf799, 0 2px 16px #4dabf755;
    transform: scale(1.05);
}
.survey-submit-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
/* Back button and actions */
.survey-actions {
    display: flex;
    gap: 0.8rem;
    align-items: stretch; /* ensure equal heights align perfectly */
    justify-content: center;
    margin-top: 0.8rem;
    position: relative;
}

/* Center the next button when back button is hidden */
.survey-actions:has(.survey-back-btn[style*="hidden"]) {
    justify-content: center;
}

.survey-actions:has(.survey-back-btn[style*="hidden"]) .survey-next-btn {
    margin: 0 auto;
    display: block;
    width: auto;
    min-width: 150px;
}
.survey-actions .survey-submit-btn { margin-top: 0; } /* ensure same baseline as back button */
.survey-next-btn,
.survey-back-btn,
.survey-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    line-height: 1;
    box-sizing: border-box;
    font-size: 1rem;
    border-radius: 2rem;
    padding: 0 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-weight: 500;
}

.survey-next-btn {
    background: linear-gradient(90deg, #4dabf7 60%, #74c0fc 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(77, 171, 247, 0.3);
}

.survey-next-btn:not(:disabled):hover {
    background: linear-gradient(90deg, #3a9ae8 60%, #5db0f5 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(77, 171, 247, 0.4);
}

.survey-next-btn:not(:disabled):active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(77, 171, 247, 0.3);
}

.survey-next-btn:disabled {
    background: #2d3a4a;
    color: #4a5a6e;
    cursor: not-allowed;
    box-shadow: none;
}

.survey-back-btn {
    background: transparent;
    color: #a3d3ff;
    border: 1px solid #344250;
    padding: 0 1.6rem;
}

.survey-back-btn:hover {
    border-color: #4dabf7;
    color: #d6ecff;
}

.survey-submit-btn {
    padding: 0 1.8rem;
}

.survey-actions .survey-submit-btn:hover { 
    transform: none; 
}
@media (max-width: 600px) {
    .survey-options { grid-template-columns: 1fr; }
    .contact-form { padding: 0; }
    .survey-title { font-size: 2rem; }
    .survey-description { font-size: 1rem; }
    .survey-section { min-height: auto; padding: 0.75rem 2vw; }
}

/* Micro animations */
@keyframes stepFadeUp {
    0% { opacity: 0; transform: translateY(10px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-step { animation: stepFadeUp 280ms cubic-bezier(.25,.8,.25,1) both; }

@keyframes pulseOnce {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(77,171,247,0.0); }
    50% { transform: scale(1.025); box-shadow: 0 0 0 6px rgba(77,171,247,0.18); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(77,171,247,0.0); }
}
.pulse { animation: pulseOnce 380ms ease-out; }
.carousel-col {
  flex: 1 1 0;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Desktop - Side by side carousels */
@media (min-width: 900px) {
  .carousels-row {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .carousel-col {
    flex: 0 1 400px;
    min-width: 300px;
    max-width: 400px;
  }
  .carousel {
    width: 340px;
    max-width: 400px;
    min-width: 340px;
  }
}
.carousel-title {
  color: #4dabf7;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

/* Transformari: force vertical stacking and consistent centering */
#transformations {
  margin-top: 2.5rem;
  padding-bottom: 4rem;
}
#transformations h2 {
  text-align: center;
  color: #4dabf7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 1px 2px 10px #0006;
  margin-bottom: 1rem;
}
/* Transformations section specific styles */
#transformations .carousels-row {
  justify-content: center;
  gap: 2rem;
}
#transformations .carousel-col {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}
#transformations .carousel {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
@media (max-width: 600px) {
  #transformations .carousel-col,
  #transformations .carousel {
    max-width: 440px;
  }
}
@media (max-width: 400px) {
  #transformations .carousel-col,
  #transformations .carousel {
    max-width: 92vw;
  }
}

/* Mobile - Stack carousels */
@media (max-width: 899px) {
  .carousels-row {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .carousel-col {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .carousel {
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem 0.5rem 1.5rem 0.5rem;
  }
  .carousel-track {
    height: 260px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-col {
    min-width: 0;
    max-width: 95%;
    width: 100%;
  }
  .carousel {
    max-width: 49vw;
    min-width: 160px;
    margin-left: auto;
    margin-right: auto;
    padding: 0.4rem 0.1rem 0.7rem 0.1rem;
    border-radius: 0.7rem;
  }
  .carousel-track {
    height: 54vw;
    min-height: 120px;
    max-height: 200px;
  }
  .carousel-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
}

/* Extra small phones */
@media (max-width: 400px) {
  .carousels-row {
    overflow-x: auto;
    gap: 0.3rem;
  }
  .carousel-col {
    min-width: 160px;
    max-width: 90vw;
  }
  .carousel {
    max-width: 90vw;
    min-width: 160px;
    padding: 0.2rem 0.1rem 0.5rem 0.1rem;
  }
  .carousel-title {
    font-size: 0.85rem;
  }
  .carousel-track {
    height: 38vw;
    min-height: 90px;
    max-height: 130px;
  }
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    background: #1a1b2e !important;
    margin: 0;
    padding: 0;
}
body {
    background: #1a1b2e !important;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1b2e 0%, #2a3a5c 100%);
    color: #e6f0ff;
    min-height: 100vh;
    overflow-x: hidden;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.05rem 0.7vw; /* Thinner header */
    background: rgba(26, 27, 46, 0.95);
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 10;
    animation: slideDown 0.8s cubic-bezier(.4,2,.6,1) 0.1s both;
    border-bottom: 1px solid #3a4b7a;
}
@keyframes slideDown {
    0% { transform: translateY(-60px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
.logo {
    margin: 0 0.5rem 0 0;
    position: relative;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    line-height: 0; /* Collapse extra vertical space */
    height: auto;
    overflow: visible;
}


.header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem 3vw;
    transition: transform 0.33s cubic-bezier(.4,2,.6,1);
    z-index: 1000;
    position: sticky;
    top: 0;
    background: inherit;
    background: rgba(26, 27, 46, 0.95);
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.14);
    position: sticky;
    top: 0;
    z-index: 10;
    animation: slideDown 0.8s cubic-bezier(.4,2,.6,1) 0.1s both;
}
@media (max-width: 900px) {
    .header {
        position: relative;
        flex-wrap: wrap;
        gap: 0.5rem;
        min-height: 70px;
        justify-content: flex-start;
        padding: 1.2rem 1vw 1.2rem 2vw;
    }
    .logo {
        margin-left: 0.5rem;
        margin-right: auto;
    }
    .hamburger {
        right: 1.3rem;
    }
}
nav, .navbar {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    margin-left: auto;
}
@media (min-width: 1200px) {
    nav, .navbar { gap: 1.6rem; }
}
nav a, .navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
    padding: 0.18rem 1.3rem;
    border-radius: 2rem;
    background: rgba(255,255,255,0.02);
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    overflow: hidden;
}
nav a:hover, .navbar a:hover {
    color: #0b172a;
    background: #4dabf7;
    box-shadow: 0 4px 18px 0 rgba(77,171,247,0.28);
    text-decoration: none;
}

.language-select {
    margin-left: 1rem;
    position: relative;
}

.language-select select {
    background-color: transparent;
    color: white;
    border: 1px solid #4dabf7;
    border-radius: 5px;
    padding: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-select select:hover {
    background-color: #4dabf7;
    color: #0b172a;
}

.mobile-menu .language-select {
    margin-top: 1rem;
    align-self: flex-end;
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

.language-select select option {
    background-color: #1a1b2e;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 38px;
    height: 38px;
    z-index: 9999;
    position: absolute;
    top: 1.3rem;
    right: 2.2rem;
}
.hamburger span {
    display: block;
    height: 4px;
    width: 30px;
    background: #4dabf7;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 900px) {
    .header {
        position: relative;
        flex-wrap: wrap;
        gap: 0.5rem;
        min-height: 70px;
    }
    .hamburger {
        display: flex;
    }
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}
.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    max-width: 320px;
    height: 100vh;
    background: #232526ee;
    box-shadow: -2px 0 32px #0007;
    z-index: 100;
    padding: 6rem 2rem 2rem 2rem;
    gap: 2rem;
    animation: slideInMenu 0.3s;
}
@keyframes slideInMenu {
    from { transform: translateX(100vw); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
    from { right: -100vw; opacity: 0; }
    to { right: 0; opacity: 1; }
}

.logo-img {
    height: 50px;
    max-width: 160px;
    width: auto;
    margin: 0;
    padding: 0;
    object-fit: contain;
    display: block; /* Remove inline image extra space */
}


.slider-container {
    width: 100%;
    max-width: 540px;
    margin: 2rem auto 2.5rem auto;
    position: relative;
    user-select: none;
}

.carousel {
  position: relative;
  max-width: 440px;
  margin: 2rem auto 2rem auto;
  background: #222;
  border-radius: 1.5rem;
  box-shadow: 0 8px 36px #0009, 0 2px 8px #4dabf733;
  padding: 0.7rem 0.7rem 1.1rem 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}


.carousel-track {
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #181818;
  border-radius: 1.2rem;
  overflow: hidden;
}
.carousel-img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  background: #232526;
  transition: opacity 0.5s cubic-bezier(.4,2,.6,1);
  opacity: 0;
  z-index: 1;
}
.carousel-img.active {
  display: block;
  opacity: 1;
  z-index: 2;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #232526ee;
  border: none;
  color: #4dabf7;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 12px #0008;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
}
.carousel-arrow.left {
  left: 18px;
}
.carousel-arrow.right {
  right: 18px;
}
.carousel-arrow:hover, .carousel-arrow:focus {
  background: #4dabf7;
  color: #0b172a;
  box-shadow: 0 2px 18px rgba(77,171,247,0.5);
}
.carousel-indicators {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 0.5rem 0;
}
.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: #4dabf744;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  outline: none;
}
.carousel-dot.active {
  background: #4dabf7;
  box-shadow: 0 0 0 2px #232526, 0 2px 10px #4dabf755;
}
@media (max-width: 900px) {
  .carousel {
    max-width: 98vw;
    padding: 1.2rem 1vw 2.2rem 1vw;
    border-radius: 1.2rem;
  }
  .carousel-track {
    height: 340px;
    border-radius: 1.2rem;
  }
}
@media (max-width: 600px) {
  .carousel {
    width: auto;
    max-width: 100vw;
    margin-left: 5vw;
    margin-right: 5vw;
    padding: 0.5rem 0.5rem 1.2rem 0.5rem;
    border-radius: 1rem;
    box-sizing: border-box;
  }
  .carousel-track {
    width: 100%;
    height: 54vw;
    min-height: 180px;
    max-height: 320px;
    border-radius: 1rem;
    margin: 0 auto;
    background: #181818;
  }
  .carousel-img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    min-height: 180px;
    object-fit: contain;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 1rem;
    background: #232526;
  }

  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    left: unset;
    right: unset;
  }
  .carousel-arrow.left {
    left: 8px !important;
    right: auto;
  }
  .carousel-arrow.right {
    right: 8px !important;
    left: auto;
  }
  .carousel-indicators {
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}


.slider-image-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px #0005;
    background: #181818;
}
.slider-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: filter 0.2s;
}
.slider-img-before {
    z-index: 1;
}
.slider-resize {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.1s;
}
.slider-img-after {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.slider-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    background: #4dabf7;
    z-index: 3;
    cursor: ew-resize;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-handle {
    width: 32px;
    height: 32px;
    background: #232526;
    border: 3px solid #4dabf7;
    border-radius: 50%;
    box-shadow: 0 2px 8px #0006;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: ew-resize;
    z-index: 4;
    transition: border 0.2s, background 0.2s;
}
.slider-bar:hover .slider-handle, .slider-handle:active {
    border-color: #a5d8ff;
    background: #181818;
}
@media (max-width: 600px) {
    .slider-image-wrapper { height: 220px; }
}

@media (max-width: 600px) {
  .logo-img {
    height: 60px;
    max-width: 120px;
  }
}

.mobile-menu .mobile-link {
    color: #fff;
    font-size: 1.3rem;
    padding: 1rem 0;
    text-decoration: none;
    border-bottom: 1px solid #4445;
    transition: color 0.18s;
}
.mobile-menu .mobile-link:last-child {
    border-bottom: none;
}
.mobile-menu .mobile-link:hover {
    color: #4dabf7;
}
@media (max-width: 900px) {
    nav, .navbar {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu {
        display: flex;
    }
    .header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}
@media (max-width: 800px) {
    .about-row, .about-row.reverse {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    .about-img.large {
        width: 95vw;
        max-width: 340px;
        height: auto;
    }
    .about-text.large {
        font-size: 1rem;
        text-align: center;
    }
    .about-contact-btn {
        font-size: 1.1rem;
        padding: 1rem 2.2rem;
    }
    .about-contact-btn-wrap {
        margin-top: 1.2rem;
    }
}
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 3rem 2vw 2rem 2vw;
    min-height: 65vh;
    background: linear-gradient(120deg, #1a1b2e 60%, #2a3a5c 100%);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.10);
    animation: fadeIn 1.2s cubic-bezier(.4,2,.6,1) 0.2s both;
}
.hero-title {
    font-size: 2.7rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.15;
    color: #4dabf7;
    animation: dark-yellow-pulse 1.5s infinite;
    text-shadow: 0 0 0px #1e66f5;
}

@keyframes dark-yellow-pulse {
    0% {
        color: #4dabf7;
        text-shadow: 0 0 0px #1e66f5;
    }
    50% {
        color: #74c0fc;
        text-shadow: 0 0 2px #1e66f5, 0 0 6px #1e66f5;
    }
    100% {
        color: #4dabf7;
        text-shadow: 0 0 0px #1e66f5;
    }
}


@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.97); }
    100% { opacity: 1; transform: scale(1); }
}
.hero-content {
    flex: 1 1 350px;
    max-width: 500px;
    padding: 1.5rem 2rem;
}
.hero-content h1 {
    font-size: 2.7rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.15;
}
.hero-content .highlight {
    color: #4dabf7;
    text-shadow: 1px 2px 10px #0006;
    animation: pulse 1.4s infinite alternate;
}
@keyframes pulse {
    from { filter: brightness(1); }
    to { filter: brightness(1.35); }
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff9;
}
.cta {
    background: #4dabf7;
    color: #0b172a;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.85rem 2.2rem;
    border-radius: 2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px #0003;
    transition: background 0.2s, transform 0.15s;
    animation: popIn 0.8s cubic-bezier(.4,2,.6,1) 0.3s both;
}
.cta:hover {
    background: #74c0fc;
    transform: scale(1.07);
}
@keyframes popIn {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.hero-img {
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.hero-img img {
    width: 480px;
    max-width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 16px 48px 0 #0007;
    animation: imgFloat 3s ease-in-out infinite alternate;
    object-fit: cover;
    display: block;
}
@media (max-width: 900px) {
    .hero-img img {
        width: 90vw;
        max-width: 350px;
    }
}
@keyframes imgFloat {
    from { transform: translateY(0px); }
    to { transform: translateY(-18px); }
}
.services {
    padding: 3rem 2vw;
    background: #232526;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#availability-bar-container {
    margin: 32px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
}
.availability-bar-bg {
    width: 100%;
    background: #23272a;
    border-radius: 999px;
    height: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    overflow: hidden;
    position: relative;
    border: 2px solid #4dabf7;
}
/* Progress bar container */
#availability-bar-container .availability-bar-bg {
    background: #2a1a1a !important;
    border: 2px solid #ff4d4d !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

/* Progress bar fill */
#availability-bar-container .availability-bar-bg .availability-bar-fill {
    height: 100% !important;
    width: 80% !important;
    max-width: 80% !important;
    min-width: 80% !important;
    background: linear-gradient(90deg, #ff3333 0%, #cc0000 100%) !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
    animation: pulse 1.5s infinite alternate;
    border-radius: 999px 0 0 999px !important;
    transition: width 0.7s cubic-bezier(.4,2,.3,1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    width: 80% !important;
    max-width: 80% !important;
    min-width: 80% !important;
    box-sizing: border-box !important;
}
/* Glowing bubbles for fizz effect */
.bubble {
    position: absolute;
    bottom: 2px; /* Keep bubbles inside the bar */
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #ff6666 60%, #cc0000 100%, transparent 100%);
    box-shadow: 0 0 8px 2px rgba(255, 0, 0, 0.6), 0 0 16px 4px rgba(255, 0, 0, 0.26);
    opacity: 0.8;
    pointer-events: none;
    animation: bubble-float 1.5s ease-out forwards;
    z-index: 5;
    transform: translateY(0);
}
@keyframes pulse {
    from {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
    }
}

@keyframes bubble-float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    70% {
        opacity: 1;
        filter: brightness(1.5);
    }
    100% {
        transform: translateY(-14px) scale(1.2);
        opacity: 0;
    }
}

.availability-bar-text {
    display: block;
    width: 100%;
    text-align: center;
    color: #ff4d4d;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    margin-bottom: 6px;
    font-size: 1.08rem;
    letter-spacing: 1px;
}

.services h2 {
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
    color: #4dabf7;
    text-shadow: 1px 2px 10px #0006;
    text-transform: uppercase;
    line-height: 1.1;
}
@media (max-width: 900px) {
    .services h2 {
        font-size: 2.2rem;
        font-weight: 900;
        color: #4dabf7;
        text-shadow: 1px 2px 10px #0006;
        letter-spacing: 0.1em;
    }
}
@media (max-width: 500px) {
    .services h2 {
        font-size: 1.3rem;
        letter-spacing: 0.13em;
        padding: 0 0.2em;
    }
}

@media (max-width: 600px) {
    .header, footer {
        background: #1a1b2e !important;
        color: #4dabf7 !important;
    }
    .header .logo, .header nav a, footer span {
        color: #4dabf7 !important;
    }
}
.service-card-content {
    padding: 0.5rem;
}   
.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
@media (max-width: 900px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .services {
        max-width: 100vw;
    }
}

.service-card {
    background: #31343a;
    padding: 2rem 1.5rem;
    border-radius: 1.2rem;
    width: 260px;
    min-height: 180px;
    box-shadow: 0 2px 12px #0003;
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
    animation: cardAppear 0.8s cubic-bezier(.4,2,.6,1) both;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px #4dabf744;
    background: #3c3f47;
}
@keyframes cardAppear {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}
.about {
    padding: 3rem 2vw;
    background: #292c31;
}
.about h2 {
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
    color: #4dabf7;
    text-shadow: 1px 2px 10px #0006;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center; 
}
.about-card {
    background: #232526;
    border-radius: 2rem;
    box-shadow: 0 2px 16px #0007, 0 4px 32px #4dabf722;
    padding: 2rem 1.2rem 1.7rem 1.2rem;
    margin: 0; /* let grid control spacing */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    height: 100%; /* equal height cards */
    animation: cardAppear 0.8s cubic-bezier(.4,2,.6,1) both;
}
.about-card img {
    width: 120px;
    height: 120px;
    border-radius: 1.2rem;
    object-fit: cover;
    box-shadow: 0 2px 16px #0005;
    margin-bottom: 0.8rem;
}
.about-card-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4dabf7;
    text-align: center;
    margin-bottom: 0.7rem;
}
.about-card-content p {
    font-size: 1.02rem;
    color: #fff9;
    text-align: center;
}
@media (max-width: 700px) {
    .about-card {
        max-width: 95vw;
        padding: 1.4rem 0.4rem 1.3rem 0.4rem;
        gap: 0.7rem;
    }
    .about-card img {
        width: 90px;
        height: 90px;
        border-radius: 1rem;
    }
    .about-card-content h3 {
        font-size: 1.08rem;
    }
    .about-card-content p {
        font-size: 0.99rem;
    }
    .about-contact-form-wrap {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        justify-content: center;
    }
    .contact-form {
        width: 100%;
        max-width: 420px;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}
.about-sections {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    width: 100%;
}
@media (max-width: 900px) {
    .about-sections { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .about-sections { grid-template-columns: 1fr; }
}
.about-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
}
.about-row.reverse {
    flex-direction: row-reverse;
}
.about-img.large {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 4px 32px #0007;
    transition: box-shadow 0.25s, filter 0.25s;
}
.about-img.large:hover {
    box-shadow: 0 0 40px 10px #4dabf7, 0 4px 32px #0007;
    filter: brightness(1.1);
    z-index: 1;
}
.about-text.large {
    font-size: 1.35rem;
    line-height: 1.7;
    max-width: 540px;
}
.about-text.large h3 {
    font-size: 2rem;
    color: #4dabf7;
    margin-bottom: 1rem;
}
.about-contact-form-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.contact-form {
    background: #292c31;
    padding: 2.2rem 3rem 1.5rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px #0007;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: stretch;
}
.contact-form h3 {
    color: #4dabf7;
    margin-bottom: 1.1rem;
    text-align: center;
    font-size: 2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-size: 1.1rem;
    color: #a3d3ff;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    padding: 0.7rem 1rem;
    border-radius: 0.8rem;
    border: none;
    background: #232526;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px #0002;
    outline: none;
    transition: box-shadow 0.18s, border 0.18s;
}
.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 2px #4dabf777;
    border: 1px solid #4dabf7;
}
.about-contact-btn {
    font-size: 1.4rem;
    padding: 1.1rem 3.5rem;
    border-radius: 2.5rem;
    background: linear-gradient(90deg, #4dabf7 60%, #74c0fc 100%);
    color: #0b172a;
    font-weight: bold;
    box-shadow: 0 2px 16px #4dabf755;
    border: none;
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
    margin-top: 0.8rem;
}
.about-contact-btn:hover {
    background: #74c0fc;
    box-shadow: 0 0 30px 8px #4dabf799, 0 2px 16px #4dabf755;
    transform: scale(1.06);
}
.form-status {
    min-height: 28px;
    margin-top: 0.7rem;
    text-align: center;
    font-size: 1.1rem;
    color: #4dabf7;
    opacity: 0;
    transition: opacity 0.3s;
}
.form-status.success {
    color: #7fff7f;
    opacity: 1;
    animation: popIn 0.5s;
}
.form-status.error {
    color: #ff7f7f;
    opacity: 1;
    animation: popIn 0.5s;
}
@media (max-width: 600px) {
    .contact-form {
        padding: 1.2rem 0.4rem 1.2rem 0.4rem;
    }
}
@media (max-width: 1100px) {
    .about-img.large {
        width: 220px;
        height: 220px;
    }
    .about-text.large {
        font-size: 1.08rem;
    }
}
@media (max-width: 800px) {
    .about-row, .about-row.reverse {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    .about-img.large {
        width: 95vw;
        max-width: 340px;
        height: auto;
    }
    .about-text.large {
        font-size: 1rem;
        text-align: center;
    }
    .about-contact-btn {
        font-size: 1.1rem;
        padding: 1rem 2.2rem;
    }
}

.about-img {
    width: 180px;
    border-radius: 2rem;
    box-shadow: 0 2px 12px #0004;
    margin-bottom: 1rem;
}
.about-content ul {
    margin-top: 1rem;
    list-style: none;
    color: #4dabf7;
    font-size: 1.1rem;
}
footer {
    background: #18191a;
    color: #fff8;
    text-align: center;
    padding: 1.2rem 0;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
    animation: fadeInModal 0.4s;
}
@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal-content {
    background: #232526;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 4px 32px #0007;
    text-align: center;
    position: relative;
    min-width: 280px;
    max-width: 92vw;
    animation: popIn 0.6s cubic-bezier(.4,2,.6,1) both;
}
.close {
    position: absolute;
    right: 1.2rem;
    top: 1.2rem;
    font-size: 2rem;
    color: #4dabf7;
    cursor: pointer;
    transition: color 0.2s;
}
.close:hover {
    color: #fff;
}
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.2rem;
}
.contact-option {
    background: #4dabf7;
    color: #0b172a;
    padding: 0.9rem 0;
    border-radius: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px #0002;
}
.contact-option:hover {
    background: #74c0fc;
    transform: scale(1.05);
}
/* Responsive Styles */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-img {
        margin-top: 2rem;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .service-cards {
        flex-direction: column;
        gap: 1.5rem;
    }
}
@media (max-width: 500px) {
    .header {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 2vw;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .services h2, .about h2 {
        font-size: 1.3rem;
    }
    .service-card {
        width: 95vw;
    }
    .modal-content {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
}
