:root {

/*--------------------------------------------------------------
# New Pricing Calculator
--------------------------------------------------------------*/
.pricing-calculator {
  padding: 60px 0;
  background: var(--bg-color);
}

.pricing-calculator .section-title h2 {
  color: var(--primary-color);
}

.pricing-calculator .section-title p {
  color: #aaa;
  font-style: italic;
}

.calculator-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary-color);
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.tab-link.active {
  background: var(--accent-color);
  color: var(--bg-color);
  border-color: var(--accent-color);
}

/* Promo Banner */
.promo-banner {
  background: linear-gradient(135deg, #ff4c29 0%, #ff6b3d 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(255, 76, 41, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Price Tags */
.option-card .price-original {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff4c29;
  text-decoration: line-through;
  opacity: 0.8;
}

.option-card .price-discounted {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4CAF50;
}

/* Addons Grid */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.addons-column {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.addons-column h4 {
  color: var(--accent-color);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.addon-item {
  margin-bottom: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.addon-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 76, 41, 0.3);
}

.addon-content {
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 5px 15px;
}

.addon-title {
  font-weight: 600;
  color: var(--primary-color);
  grid-column: 1;
  grid-row: 1;
}

.addon-desc {
  font-size: 0.85rem;
  color: #aaa;
  grid-column: 1;
  grid-row: 2;
}

.addon-price {
  font-weight: 700;
  color: var(--accent-color);
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
}

/* Scale Options */
.scale-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}

.support-option {
  display: flex;
  flex-direction: column;
}

.support-option label {
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 500;
}

.support-option select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
}

/* Price Breakdown */
.price-breakdown {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.price-row.total-row {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  font-weight: 600;
}

.discount-row {
  color: #4CAF50;
  font-weight: 500;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 15px 0;
}

.discount-note {
  margin-top: 15px;
  padding: 10px 15px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #a5d6a7;
}

.discount-tag {
  background: #4CAF50;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* User selection dropdown */
.user-selection {
  margin: 25px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-option {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.user-option label {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 8px;
}

.user-option select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.user-option select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(255, 76, 41, 0.2);
}

.user-option select option {
  background: #1a1a1a;
  color: white;
  padding: 10px;
}

/* Adjust options grid for software calculator */
#software .options-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

#software .option-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#software .option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

#software .option-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--accent-color);
}

#software .option-card p {
  color: #aaa;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #software .options-grid {
    grid-template-columns: 1fr;
  }
  
  .calculator-tabs {
    flex-wrap: wrap;
  }
  
  .tab-link {
    padding: 10px 15px;
    font-size: 14px;
  }
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s;
}

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

.calculator-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-step {
  margin-bottom: 40px;
}

.calculator-step h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 24px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 10px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.option-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.option-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.option-card.selected {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--bg-color);
}

.option-card.selected h4,
.option-card.selected p {
    color: var(--bg-color);
}

.option-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.option-card p {
  font-size: 14px;
  color: #ccc;
  transition: color 0.3s ease;
}

.addons-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.addon-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
}

/* Custom Checkbox */
.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--primary-color);
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox .checkmark {
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 5px;
  margin-right: 15px;
  position: relative;
  transition: background-color 0.3s;
}

.custom-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--accent-color);
}

.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.total-price-container {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.total-price-container h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 10px;
}

.price-display {
  font-size: 48px;
  font-weight: bold;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

    --bg-color: #0a0a0a;
    --primary-color: #ffffff;
    --accent-color: #00ffff;
    --gradient-start: #1a1a1a;
    --gradient-end: #0a0a0a;
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Syncopate', sans-serif;
    --shadow-color: rgba(0, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--primary-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    from { background-position: 0 0; }
    to { background-position: 40px 40px; }
}

.cursor {
    position: fixed;
    background-color: var(--accent-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                background-color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cursor.highlight {
    transform: scale(0);
}

.cursor-follower.highlight {
    width: 60px;
    height: 60px;
    background-color: var(--shadow-color);
    border-width: 1px;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), transparent);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

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

.main-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

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

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

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.3rem;
    border-radius: 20px;
}

.lang-switcher {
    margin-left: 2rem; /* Adds space between nav links and lang switcher */
}

.lang-switcher a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.lang-switcher a.active,
.lang-switcher a:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.lang-switcher a::after {
    display: none;
}

section {
    min-height: 100vh;
    padding: 8rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

/* Hero Section */
/* Hero Section */
.hero-section {
    justify-content: center;
    text-align: center;
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}



.cta-button {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--shadow-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--gradient-start), var(--gradient-end) 70%);
    z-index: -1;
    overflow: hidden;
}

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

.service-card {
    background: linear-gradient(145deg, var(--gradient-start), var(--bg-color));
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px var(--shadow-color);
}

.service-card img {
    width: 160px;
    height: 160px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.service-card:hover img {
    opacity: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Bento Grid for About Section */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.bento-item {
    background: linear-gradient(145deg, var(--gradient-start), var(--bg-color));
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bento-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 40px var(--shadow-color);
}

.bento-item h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-buttons-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--accent-color);
    background-color: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    overflow: hidden;
    transition: color 0.4s ease-in-out;
    z-index: 1;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: -1;
}

.contact-button:hover {
    color: var(--bg-color);
}

.contact-button:hover::before {
    transform: translateX(0);
}

.contact-button span {
    z-index: 2;
}

/* Animations */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-open .hamburger {
    background-color: transparent;
}

.nav-open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-open .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .main-header {
        padding: 1rem 5%;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
        z-index: 1000;
    }

    .nav-open .main-nav {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 2rem;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .lang-switcher {
        margin-left: 0;
    }

    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 4rem 5%;
    }

    .hero-content h1 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        width: 100px;
        height: 100px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

footer.main-footer, .main-footer {
    text-align: center;
    padding: 2rem 5%;
    background-color: var(--gradient-start);
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Title Animation */
.hero-title .word {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--d);
}

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