/* ======================================================
   AIRBALANCE - KLIMATYZACJA PROFESJONALNA
   Pełne style CSS inspirowane netio360.pl/klimatyzacja-demo
   ====================================================== */

:root {
  --primary: #3a86ff;
  --primary-dark: #2563eb;
  --accent: #8CB4FF;
  --dark: #1a1c1e;
  --text: #333;
  --text-light: #666;
  --bg-light: #f0f7ff;
  --bg-white: #ffffff;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ======================================================
   NAWIGACJA
   ====================================================== */
.cs-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.cs-nav.is-scrolled {
  height: 70px;
  background: rgba(10, 15, 30, 0.95);
}

.cs-nav-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.cs-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
}

.cs-nav-logo-text {
  font-size: 1.1rem;
  font-weight: 900;
}

.c-white { color: var(--white); }
.c-black { color: #000; font-weight: 900; }
.c-blue { color: var(--primary); font-weight: 300; margin-left: 1px; }

.cs-nav-menu {
  display: flex;
  gap: 8px;
}

.cs-nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.cs-nav-link:hover {
  background: var(--white);
  color: #000;
}

.cs-btn-nav-special {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
}

.m-desktop-only {
  display: block;
  padding: 12px 24px;
  font-size: 0.75rem;
}

.m-desktop-only:hover {
  background: var(--white);
  color: #000;
}

.m-mobile-only {
  display: none;
}


.cs-lang-switch {
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  margin-right: 10px;
  transition: var(--transition);
}

.cs-lang-switch:hover {
  background: var(--white);
  color: var(--dark);
}


.cs-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: 0.4s;
}

#navToggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--primary);
}

#navToggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

#navToggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--primary);
}


@media (max-width: 1100px) {
  .m-desktop-only { display: none; }
  .m-mobile-only { display: flex; }
  .cs-nav-toggle { display: block; }

  body.nav-open #mainLogo {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .cs-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.99) 0%, rgba(210, 230, 255, 0.96) 100%);
    backdrop-filter: blur(25px);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1050;
  }

  .cs-nav-overlay.is-open {
    right: 0;
  }

  .cs-mobile-menu-header {
    position: absolute;
    top: 30px;
    left: 40px;
  }

  .cs-nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .cs-nav-link {
    color: #1a1a1a;
    font-size: 0.97rem;
    border: none;
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.4s forwards;
  }

  .cs-nav-overlay.is-open .cs-nav-link {
    opacity: 0.7;
    transform: translateY(0);
  }

  .m-mobile-only {
    margin-top: 35px;
    width: 280px;
    padding: 22px;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 15px 35px rgba(60, 35, 215, 0.2);
    opacity: 0;
    transition: 0.5s 0.4s;
  }

  .cs-nav-overlay.is-open .m-mobile-only {
    opacity: 1;
  }
}

@media (min-width: 1101px) {
  .cs-mobile-menu-header {
    display: none !important;
  }
}

/* ======================================================
   HERO SECTION
   ====================================================== */
.nx-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1c2e 100%);
  overflow: hidden;
}

.nx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/background.png') center center / cover no-repeat;
  z-index: 0;
}

.nx-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.3) 0%, rgba(10, 15, 30, 0.8) 100%);
}


.ww-glass-pill {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 14px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 380px;
  transform: translateX(0);
  transition: transform 0.3s ease-out;
}

.ww-glass-pill.ww-hidden {
  transform: translateX(calc(-100% - 30px));
}

.ww-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 0.85rem;
}

.ww-location-part {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.ww-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

#ww-city {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.7rem;
  opacity: 0.8;
}

#ww-temp-val {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--accent);
  margin-left: auto;
}

.ww-divider {
  display: none;
}

.ww-advice-part {
  display: flex;
  align-items: center;
  gap: 8px;
}

#ww-icon-slot {
  font-size: 1.2rem;
}

#ww-advice-text {
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .ww-glass-pill {
    bottom: 70px;
    left: 8px;
    right: auto;
    max-width: 200px;
    border-radius: 12px;
    padding: 8px 12px;
  }

  .ww-container {
    gap: 4px;
    font-size: 0.7rem;
  }

  .ww-location-part {
    gap: 5px;
  }

  .ww-dot {
    width: 6px;
    height: 6px;
  }

  #ww-city {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
  }

  #ww-temp-val {
    font-size: 0.9rem;
  }

  #ww-icon-slot {
    font-size: 0.9rem;
  }

  #ww-advice-text {
    font-size: 0.65rem;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .ww-glass-pill {
    bottom: 65px;
    left: 6px;
    max-width: 180px;
    padding: 6px 10px;
    border-radius: 10px;
  }

  .ww-advice-part {
    display: none;
  }

  .ww-location-part {
    gap: 4px;
  }

  #ww-city {
    font-size: 0.55rem;
  }

  #ww-temp-val {
    font-size: 0.85rem;
  }

  .ww-dot {
    width: 5px;
    height: 5px;
  }
}

.nx-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nx-hero-card {
  max-width: 620px;
  padding: 80px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateX(40px);
  transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.nx-hero-card.is-visible {
  opacity: 1;
  transform: none;
}

.nx-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-logo-img {
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.nx-hero .nx-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.nx-logo-text {
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 1.2rem;
}

.nx-logo-text span {
  color: var(--accent);
  font-weight: 300;
}

.nx-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 900;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.nx-hero .nx-lead {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin-bottom: 50px;
}

.nx-actions {
  display: flex;
  gap: 20px;
}

.nx-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 22px 14px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cs-btn-p {
  background: var(--accent);
  color: #000;
  border: 1px solid var(--accent);
  box-shadow: 0 6px 20px rgba(140, 180, 255, 0.35);
}

.cs-btn-p:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-2px);
}

.cs-btn-s {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cs-btn-s:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

@media (max-width: 992px) {
  .nx-hero-inner {
    padding: 120px 20px 40px;
    justify-content: center;
    align-items: flex-end;
  }

  .nx-hero-card {
    padding: 40px 25px;
    transform: translateY(30px);
  }

  .nx-actions {
    flex-direction: column;
  }
}

/* ======================================================
   O FIRMIE (ABOUT)
   ====================================================== */
.nx-about {
  position: relative;
  padding: 120px 20px 70px;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f7ff 0%, #f6faff 45%, #ffffff 100%);
}

.nx-about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nx-about-head {
  text-align: center;
  margin-bottom: 60px;
}

.nx-about-logo {
  margin-top: 20px;
}

.about-logo-img {
  height: 60px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nx-chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 16px;
}

.nx-about-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1;
  margin: 0;
}

.nx-dark {
  color: var(--dark);
  font-weight: 900;
}

.nx-accent {
  color: var(--primary);
  font-weight: 300;
}

.nx-about .nx-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  margin-left: 6px;
}

.nx-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.nx-about-main .nx-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--dark);
  border-left: 2px solid var(--primary);
  padding-left: 24px;
  margin: 0 0 32px;
}

.nx-line {
  width: 80px;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
}

.nx-about-side .nx-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.nx-about-side .nx-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .nx-about {
    padding: 80px 15px 40px;
  }

  .nx-about-head {
    margin-bottom: 40px;
  }

  .nx-about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ======================================================
   METRYKI
   ====================================================== */
.nx-metrics {
  position: relative;
  padding: 0 20px 120px;
  background: linear-gradient(180deg, #f0f7ff 0%, #f6faff 45%, #ffffff 100%);
}

.nx-metrics-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 40px 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transform: translateY(-35px);
}

.nx-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.nx-metric-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin: 0;
}

.nx-plus {
  font-size: 1.1rem;
  margin-left: 2px;
  opacity: 0.7;
}

.nx-metric-label {
  margin-top: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary);
  opacity: 0.85;
}

.nx-metric-sep {
  width: 1px;
  height: 50px;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0.5;
}

@media (max-width: 992px) {
  .nx-metrics {
    padding: 0 15px 60px;
  }

  .nx-metrics-wrap {
    flex-direction: column;
    gap: 30px;
    padding: 34px 26px;
    border-radius: 30px;
    transform: translateY(-18px);
  }

  .nx-metric-sep {
    width: 40px;
    height: 1px;
    opacity: 0.5;
  }

  .nx-metric-num {
    font-size: 2.2rem;
  }

  .nx-metric-label {
    font-size: 0.65rem;
  }
}

/* ======================================================
   CERTYFIKATY / PARTNERZY
   ====================================================== */
.ac-partners {
  background: #fff;
  padding: 50px 20px;
  border-bottom: 1px solid #f0f4f8;
}

.ac-partners-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ac-partners-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #94a3b8;
  margin: 0 0 30px 0;
}

.ac-partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.ac-partner-logo {
  transition: all 0.3s ease;
  opacity: 0.5;
  filter: grayscale(100%);
}

.ac-partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.ac-partner-logo img {
  height: 100px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .ac-partners-logos {
    gap: 40px;
  }

  .ac-partner-logo img {
    height: 65px;
  }
}

/* ======================================================
   USŁUGI (EXPERT SECTION)
   ====================================================== */
.ac-expert-section {
  background: #ffffff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .ac-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: radial-gradient(var(--primary) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), transparent);
    z-index: 1;
    pointer-events: none;
  }
}

.ac-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ac-header {
  text-align: left;
  margin-bottom: 50px;
}

.ac-pretitle {
  font-size: 0.75rem;
  font-weight: 400 !important;
  letter-spacing: 4px;
  color: #a0aec0;
  display: block;
  margin-bottom: 10px;
}

.ac-main-title {
  font-size: clamp(1.4rem, 5vw, 3.5rem);
  color: var(--dark);
  font-weight: 300 !important;
  white-space: nowrap;
  margin: 0;
}

.blue-accent {
  color: var(--primary);
  font-weight: 700 !important;
}

.ac-decorator {
  width: 60px;
  height: 5px;
  background: var(--primary);
  margin-top: 15px;
}

.ac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.ac-card {
  background: #f5f9ff;
  border: 1px solid transparent;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 4px;
}

.ac-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.ac-num {
  font-weight: 900;
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.4;
}

.ac-icon {
  width: 35px;
  height: 35px;
  color: var(--primary);
}

.ac-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.ac-card p {
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

.ac-card.is-active,
.ac-card:hover {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(58, 134, 255, 0.1);
  transform: translateY(-8px);
}

@media (max-width: 768px) {
  .ac-expert-section {
    padding: 80px 20px;
  }

  .ac-main-title {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    white-space: normal;
  }

  .ac-card p {
    font-size: 0.97rem;
  }

  .ac-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ac-header {
    margin-bottom: 35px !important;
  }

  .ac-card {
    padding: 28px;
  }
}

/* ======================================================
   DLACZEGO MY / WHY US
   ====================================================== */
.ac-why-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.ac-why-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ac-why-header {
  text-align: center;
  margin-bottom: 60px;
}

.ac-why-header .ac-meta-info {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 15px;
}

.ac-why-header .ac-main-title-text {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
}

.ac-why-header .ac-blue-color {
  color: var(--primary);
}

.ac-why-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.ac-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ac-why-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.ac-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(58, 134, 255, 0.15);
  border-color: rgba(58, 134, 255, 0.2);
}

.ac-why-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.ac-why-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.ac-why-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .ac-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ac-why-section {
    padding: 60px 15px;
  }

  .ac-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ac-why-card {
    padding: 30px 25px;
  }
}

/* ======================================================
   REALIZACJE / PORTFOLIO (stare - można usunąć)
   ====================================================== */
.ac-portfolio-section {
  position: relative;
  padding: 120px 20px;
  background: #ffffff;
  overflow: hidden;
}

.ac-decor-bg-text {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  user-select: none;
}

.ac-portfolio-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ac-text-col {
  flex: 1;
}

.ac-gallery-col {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ac-meta-info {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 14px;
  display: block;
}

.ac-main-title-text {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 0.95;
  margin: 0 0 50px;
  color: #1a1a1a;
}

.ac-blue-color {
  color: var(--primary);
  font-weight: 700;
}

.ac-project-details-box {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--primary);
  margin-bottom: 30px;
}

.ac-huge-bg-num {
  position: absolute;
  top: -40px;
  left: 60px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
}

#ac-project-name {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 0 5px;
}

#ac-project-loc {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 30px;
}

.ac-bar-wrap {
  width: 100%;
  max-width: 350px;
  height: 2px;
  background: #eee;
  margin-bottom: 30px;
}

.ac-bar-inner {
  height: 100%;
  width: 25%;
  background: var(--primary);
  transition: width 0.6s ease;
}

.ac-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  max-width: 360px;
}

.ac-portrait-box {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-portrait-placeholder {
  text-align: center;
  color: var(--primary);
}

.ac-portrait-placeholder span {
  font-size: 5rem;
  display: block;
  margin-bottom: 20px;
}

.ac-portrait-placeholder p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.ac-thumbs-container {
  display: flex;
  gap: 10px;
}

.ac-thumb-unit {
  flex: 1;
  aspect-ratio: 1;
  overflow: hidden;
  opacity: 0.7;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s ease;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.ac-thumb-unit.active {
  opacity: 1;
  border-color: var(--primary);
  transform: translateY(-5px);
}

@media (max-width: 900px) {
  .ac-portfolio-section {
    padding: 80px 20px;
  }

  .ac-portfolio-layout {
    flex-direction: column;
    gap: 40px;
  }

  .ac-main-title-text {
    font-size: 2.2rem;
    white-space: normal;
  }

  .ac-gallery-col {
    width: 100%;
    flex: none;
  }

  .ac-thumb-unit {
    width: 70px;
    flex: none;
  }

  .ac-decor-bg-text {
    display: none;
  }
}

/* ======================================================
   OPINIE / REVIEWS
   ====================================================== */
.ac-rev-section {
  padding: 100px 20px;
  background: #f8faff;
  overflow: hidden;
}

.ac-rev-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.ac-rev-header {
  text-align: center;
  margin-bottom: 40px;
}

.ac-rev-pre {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ac-rev-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--dark);
}

.ac-blue {
  color: var(--primary);
  font-weight: 800;
}

.ac-trust-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(58, 134, 255, 0.15);
  box-shadow: 0 4px 14px rgba(58, 134, 255, 0.08);
}

.ac-trust-icon {
  color: var(--primary);
}

.ac-trust-text {
  font-size: 0.75rem;
  color: #555;
}

.ac-trust-text strong {
  color: var(--primary);
}

.ac-rev-viewport {
  overflow: hidden;
  width: 100%;
}

.ac-rev-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.ac-rev-card {
  flex: 0 0 calc(50% - 10px);
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ac-rev-text {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #333;
  font-style: italic;
  margin: 0;
}

.ac-rev-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.ac-rev-name {
  font-weight: 700;
  color: var(--dark);
}

.ac-rev-check {
  color: var(--primary);
  font-weight: 900;
}

.ac-rev-nav {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.ac-nav-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.ac-nav-arrow:hover {
  background: var(--primary);
  color: #fff;
}

.ac-rev-dots {
  display: flex;
  gap: 8px;
}

.ac-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccd6e0;
  cursor: pointer;
  transition: 0.2s;
}

.ac-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .ac-rev-section {
    padding: 60px 15px;
  }

  .ac-rev-card {
    flex: 0 0 100%;
  }

  .ac-rev-text {
    font-size: 0.97rem;
  }
}

/* ======================================================
   KALKULATOR
   ====================================================== */
.ac-premium-calc {
  background: var(--bg-white);
  padding: 100px 20px;
  position: relative;
}

.ac-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.ac-calc-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  background: #fcfdfe;
  padding: 50px;
  border-radius: 40px;
  border: 1px solid #eef2f8;
}

.ac-tag {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 3px;
}

.ac-calc-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 10px 0;
  color: #000;
  text-transform: uppercase;
}

.ac-thin {
  font-weight: 200 !important;
  opacity: 0.8;
}

.ac-step {
  margin-bottom: 30px;
}

.ac-label {
  display: block;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
}

.ac-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.ac-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ac-chip {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 12px 5px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}

.ac-chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.05);
}

.ac-step-hint {
  font-size: 0.75rem;
  color: #777;
  margin-top: 8px;
  font-style: italic;
}

.ac-val-display {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.5rem;
}

.ac-slider-pro {
  width: 100%;
  -webkit-appearance: none;
  height: 5px;
  background: #e2e8f0;
  border-radius: 10px;
  margin-top: 15px;
}

.ac-slider-pro::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(60, 35, 215, 0.2);
  cursor: pointer;
}

.ac-step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.ac-mini-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ac-mini-field .ac-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}


.ac-custom-select {
  position: relative;
  width: 100%;
}

.ac-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ac-select-trigger:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(58, 134, 255, 0.15);
}

.ac-select-trigger svg {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.ac-custom-select.open .ac-select-trigger {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(58, 134, 255, 0.15);
  border-radius: 16px 16px 0 0;
}

.ac-custom-select.open .ac-select-trigger svg {
  transform: rotate(180deg);
}

.ac-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid var(--primary);
  border-top: none;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(58, 134, 255, 0.2);
}

.ac-custom-select.open .ac-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ac-select-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  color: var(--text);
}

.ac-select-option:hover {
  background: var(--bg-light);
}

.ac-select-option.selected {
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.1) 0%, rgba(140, 180, 255, 0.1) 100%);
  color: var(--primary);
  font-weight: 700;
}

.ac-select-option:not(:last-child) {
  border-bottom: 1px solid #f0f4f8;
}

.ac-option-icon {
  font-size: 1.2rem;
}

.ac-result {
  display: flex;
  flex-direction: column;
}

.ac-card-dark {
  background: var(--primary);
  color: #ffffff !important;
  padding: 60px 40px;
  border-radius: 35px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(60, 35, 215, 0.3);
}

.ac-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.ac-power-wrap {
  font-size: 6.5rem;
  font-weight: 950;
  margin: 20px 0;
  line-height: 1;
  color: #ffffff !important;
}

.ac-power-wrap small {
  font-size: 1.5rem;
  color: var(--accent);
  margin-left: 5px;
}

.ac-power-bar-bg {
  background: rgba(255, 255, 255, 0.1);
  height: 6px;
  border-radius: 10px;
  margin: 25px 0;
  overflow: hidden;
}

.ac-power-bar-fill {
  background: var(--accent);
  height: 100%;
  width: 25%;
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ac-device-info {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}

.ac-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 25px;
}

.ac-legal {
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 35px;
  color: #fff;
}

.ac-cta {
  display: block;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  padding: 22px;
  border-radius: 18px;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.ac-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .ac-premium-calc {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .ac-calc-grid {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
  }

  .ac-calc-title {
    font-size: 2rem;
  }

  .ac-power-wrap {
    font-size: 5rem;
  }

  .ac-legal {
    font-size: 0.97rem;
    margin-bottom: 20px;
  }

  .ac-card-dark {
    padding: 40px 25px;
  }

  .ac-step-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ======================================================
   FAQ
   ====================================================== */
.ac-faq-section {
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
}

.ac-faq-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.ac-faq-sidebar {
  flex: 0 0 380px;
  position: sticky;
  top: 100px;
}

.ac-faq-pre {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 15px;
}

.ac-faq-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.ac-faq-desc {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0 0 30px 0;
}

.ac-action-grid {
  display: flex;
  gap: 30px;
}

.ac-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: 0.25s ease;
}

.ac-action-circle {
  width: 54px;
  height: 54px;
  background: #f0f5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 8px;
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(58, 134, 255, 0.1);
}

.ac-action-circle svg {
  width: 22px;
  height: 22px;
}

.ac-action-item span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ac-action-item:hover .ac-action-circle {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(58, 134, 255, 0.22);
}

.ac-faq-container {
  flex: 1;
}

.ac-faq-item {
  border-bottom: 1px solid #eee;
}

.ac-faq-trigger {
  width: 100%;
  padding: 35px 0;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.ac-faq-number {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-right: 30px;
  opacity: 0.5;
}

.ac-faq-q {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

.ac-faq-plus {
  width: 20px;
  height: 20px;
  position: relative;
}

.ac-faq-plus::before,
.ac-faq-plus::after {
  content: '';
  position: absolute;
  background: var(--primary);
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ac-faq-plus::before {
  width: 100%;
  height: 2px;
  top: 9px;
  left: 0;
}

.ac-faq-plus::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 9px;
}

.ac-faq-item.active .ac-faq-plus::after {
  transform: rotate(90deg);
  opacity: 0;
}

.ac-faq-item.active .ac-faq-q {
  color: var(--primary);
}

.ac-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ac-faq-inner {
  padding: 0 0 35px 45px;
  color: #555;
  line-height: 1.7;
}

.ac-faq-inner p {
  margin: 0;
}

@media (max-width: 1024px) {
  .ac-faq-section {
    padding: 60px 15px;
  }

  .ac-faq-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .ac-faq-sidebar {
    flex: none;
    width: 100%;
    position: static;
    text-align: center;
  }

  .ac-action-grid {
    justify-content: center;
    margin-bottom: 10px;
  }

  .ac-faq-trigger {
    padding: 25px 0;
  }

  .ac-faq-q {
    font-size: 1.05rem;
  }

  .ac-faq-inner p {
    font-size: 0.97rem !important;
    line-height: 1.5;
  }

  .ac-faq-plus {
    width: 16px;
    height: 16px;
  }

  .ac-faq-plus::before {
    top: 7px;
  }

  .ac-faq-plus::after {
    left: 7px;
  }
}

/* ======================================================
   KONTAKT
   ====================================================== */
.ac-contact-section {
  padding: 100px 20px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.ac-contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ac-contact-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.ac-contact-pre {
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--primary);
  margin-bottom: 15px;
}

.ac-contact-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--dark);
  margin: 0 0 25px 0;
}

.ac-contact-text-top {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 40px;
}

.ac-benefit-glass-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ac-benefit-item {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.ac-benefit-item p {
  margin: 0;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.ac-icon-black {
  color: #000;
  font-size: 1rem;
}

.ac-contact-grid {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.ac-contact-info-column {
  flex: 0 0 350px;
}

.ac-contact-info-card {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.ac-contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 30px;
  color: var(--dark);
}

.ac-contact-info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.ac-contact-icon {
  font-size: 1.5rem;
}

.ac-contact-info-item div {
  display: flex;
  flex-direction: column;
}

.ac-contact-info-item strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 5px;
}

.ac-contact-info-item a,
.ac-contact-info-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.ac-contact-info-item a:hover {
  color: var(--primary);
}

.ac-contact-form-card {
  flex: 1;
  background: #fff;
  padding: 50px;
  border-radius: 40px;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.05);
}

.ac-input-group {
  position: relative;
  margin-bottom: 25px;
}

.ac-input-row {
  display: flex;
  gap: 20px;
}

.ac-input-group input,
.ac-input-group textarea {
  width: 100%;
  background: #f8fbff;
  border: 2px solid #edf2f7;
  padding: 18px;
  border-radius: 16px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: 0.3s;
}

.ac-input-group label {
  position: absolute;
  left: 18px;
  top: 18px;
  color: #94a3b8;
  pointer-events: none;
  transition: 0.3s;
  background: transparent;
}

.ac-input-group input:focus ~ label,
.ac-input-group input:not(:placeholder-shown) ~ label,
.ac-input-group textarea:focus ~ label,
.ac-input-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  color: var(--primary);
  background: #fff;
  padding: 0 8px;
  font-weight: 800;
}

.ac-input-group input:focus,
.ac-input-group textarea:focus {
  border-color: var(--primary);
}

.ac-checkbox-wrapper {
  margin-bottom: 25px;
}

.ac-checkbox-container {
  display: flex;
  gap: 12px;
  cursor: pointer;
  align-items: flex-start;
  text-align: left;
}

.ac-checkbox-container input {
  display: none;
}

.ac-checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid #edf2f7;
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
}

.ac-checkbox-container input:checked ~ .ac-checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.ac-checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

.ac-checkbox-text {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
}

.ac-submit-btn {
  width: 100%;
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 22px;
  border-radius: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 1px;
  font-family: inherit;
  font-size: 1rem;
}

.ac-submit-btn:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.ac-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.ac-form-status {
  margin-top: 15px;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  display: none;
}

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

.ac-form-status.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

@media (max-width: 1000px) {
  .ac-contact-section {
    padding: 60px 15px 40px;
  }

  .ac-contact-grid {
    flex-direction: column;
    gap: 30px;
  }

  .ac-contact-info-column {
    flex: none;
    width: 100%;
  }

  .ac-benefit-glass-cards {
    display: none;
  }

  .ac-contact-head {
    margin-bottom: 30px;
  }

  .ac-contact-title {
    font-size: 2.2rem;
  }

  .ac-contact-text-top {
    font-size: 0.97rem;
    margin-bottom: 20px;
  }

  .ac-contact-form-card {
    padding: 30px 20px;
    border-radius: 30px;
  }

  .ac-input-row {
    flex-direction: column;
    gap: 0;
  }

  .ac-input-group input,
  .ac-input-group textarea {
    padding: 15px;
    font-size: 0.97rem;
  }

  .ac-checkbox-text {
    font-size: 0.97rem;
  }
}

/* ======================================================
   FLOATING PHONE
   ====================================================== */
.floating-phone {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(58, 134, 255, 0.4);
  z-index: 999;
  transition: 0.3s;
}

.floating-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(58, 134, 255, 0.5);
}

.floating-phone svg {
  width: 28px;
  height: 28px;
}

/* ======================================================
   FOOTER
   ====================================================== */
.ac-footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 20px 30px;
}

.ac-footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ac-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.ac-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.ac-footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
}

.ac-footer-logo .ac-blue {
  font-weight: 300;
}

.ac-footer-tagline {
  color: #94a3b8;
  margin-top: 15px;
  line-height: 1.6;
  max-width: 300px;
}

.ac-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.ac-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.ac-social-link:hover {
  background: #3a86ff;
  transform: translateY(-3px);
}

.ac-footer-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #fff;
}

.ac-footer-links {
  list-style: none;
}

.ac-footer-links li {
  margin-bottom: 12px;
}

.ac-footer-links a {
  color: #94a3b8;
  transition: 0.3s;
}

.ac-footer-links a:hover {
  color: var(--primary);
}

.ac-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  margin-bottom: 12px;
  transition: 0.3s;
}

.ac-footer-contact-item:hover {
  color: var(--primary);
}

.ac-footer-address {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  margin: 0;
}

.ac-footer-company-info {
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 10px;
}

.ac-icon-blue {
  color: var(--primary);
}

.ac-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ac-footer-bottom p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .ac-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .ac-footer-tagline {
    max-width: 100%;
  }

  .ac-footer-contact-item,
  .ac-footer-address {
    justify-content: center;
  }
}

