/* ==========================================================================
   KONTAKT.CSS - Style specyficzne dla strony "Kontakt" (kontakt.html)
   ========================================================================== */

/* --- Tło z gradientem --- */
.gradient-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    z-index: -1;
}

/* --- Główny kontener strony --- */
.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* --- Nagłówek --- */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Główna sekcja z dwiema kolumnami --- */
.contact-main-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-column h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

/* --- Formularz --- */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 0;
}

.form-checkbox label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    cursor: pointer;
}

/* --- Informacje kontaktowe i mapa --- */
.contact-info p {
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.map-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 20px;
}

/* --- Responsywność --- */
@media (max-width: 900px) {
    .contact-main-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-header h1 { font-size: 2.5rem; }




    <style>
     /* Reset i zmienne */
          * {
              margin: 0;
              padding: 0;
              box-sizing: border-box;
          }

          :root {
              --primary-color: #8B5CF6;
              --primary-hover: #7C3AED;
              --dark-bg: #0F0F0F;
              --dark-secondary: #1A1A1A;
              --text-primary: #FFFFFF;
              --text-secondary: #9CA3AF;
              --border-color: #2D2D2D;
          }

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

          /* Nawigacja - poprawka białego paska */
          .navbar {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          background: rgba(15, 15, 15, 0.85) !important; /* Zmniejsz z 0.95 na 0.85 */
          backdrop-filter: blur(15px); /* Zwiększ blur z 10px na 15px */
          -webkit-backdrop-filter: blur(15px);
          z-index: 1000;
          padding: 20px 0;
          transition: transform 0.3s ease, background 0.3s ease;
          border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtelniejsza linia */
      }

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

          .logo img {
              height: 60px;
              max-height: 60px;
          }

          .menu-trigger {
              background: transparent;
              border: 1px solid rgba(255, 255, 255, 0.15);
              color: #FFFFFF;
              padding: 8px 20px;
              border-radius: 50px;
              cursor: pointer;
              font-size: 0.9rem;
              transition: all 0.3s ease;
          }

          .menu-trigger:hover {
              background: rgba(255, 255, 255, 0.05);
              border-color: #FFFFFF;
          }

          /* Hero Section */
          .hero {
              position: relative;
              min-height: 100vh;
              display: flex;
              align-items: center;
              justify-content: center;
              padding: 120px 5% 80px;
              overflow: hidden;
          }

          .hero-bg {
              position: absolute;
              inset: 0;
              background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                          radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
              z-index: -1;
          }

          .hero-content {
              max-width: 900px;
              text-align: center;
              z-index: 1;
          }

          .hero h1 {
              font-size: clamp(2.5rem, 6vw, 4.5rem);
              margin-bottom: 24px;
              font-weight: 700;
              color: var(--text-primary);
          }

          .hero-description {
              font-size: 1.25rem;
              color: var(--text-secondary);
              margin-bottom: 40px;
              max-width: 700px;
              margin-left: auto;
              margin-right: auto;
          }

          /* Buttons */
          .cta-button {
              display: inline-block;
              background: var(--primary-color);
              color: white;
              padding: 14px 32px;
              border-radius: 50px;
              font-weight: 500;
              font-size: 1rem;
              transition: all 0.3s ease;
              text-decoration: none;
              border: none;
              cursor: pointer;
          }

          .cta-button:hover {
              background: var(--primary-hover);
              transform: translateY(-2px);
              box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
          }

          /* Services Pills */
          .services-pills {
              display: flex;
              gap: 12px;
              justify-content: center;
              flex-wrap: wrap;
              margin-top: 40px;
          }

          .pill {
              padding: 8px 20px;
              background: rgba(255, 255, 255, 0.05);
              border: 1px solid rgba(255, 255, 255, 0.1);
              border-radius: 50px;
              font-size: 0.9rem;
              color: var(--text-secondary);
          }

          /* Case Study */
          .case-study {
              background: rgba(30, 30, 30, 0.98);
              padding: 100px 5%;
          }

          .case-study-container {
              max-width: 1200px;
              margin: 0 auto;
              display: grid;
              grid-template-columns: 300px 1fr;
              gap: 60px;
              align-items: center;
          }

          .case-content h2 {
              font-size: clamp(2rem, 4vw, 2.5rem);
              margin-bottom: 16px;
              color: var(--text-primary);
          }

          .case-content h3 {
              font-size: clamp(1.25rem, 3vw, 1.5rem);
              color: #FFFFFF;
              margin-bottom: 24px;
          }

          .case-description {
              color: var(--text-secondary);
              margin-bottom: 32px;
              line-height: 1.7;
          }

          .btn-case {
              display: inline-block;
              padding: 12px 28px;
              background: transparent;
              border: 1px solid var(--primary-color);
              color: #FFFFFF;
              border-radius: 50px;
              text-decoration: none;
              transition: all 0.3s ease;
          }

          .btn-case:hover {
              background: var(--primary-color);
              color: white;
          }

          /* Blog Section */
          .blog-section {
              padding: 100px 5%;
              background: var(--dark-bg);
          }

          .blog-container {
              max-width: 1200px;
              margin: 0 auto;
          }

          .blog-header h2 {
              font-size: clamp(2rem, 4vw, 3rem);
              margin-bottom: 60px;
              color: var(--text-primary);
          }

          .blog-grid {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
              gap: 30px;
          }

          .blog-card {
              background: rgba(30, 30, 30, 0.98);
              border-radius: 16px;
              overflow: hidden;
              transition: transform 0.3s ease;
          }

          .blog-card:hover {
              transform: translateY(-5px);
          }

          .blog-image {
              width: 100%;
              height: 200px;
              background-size: cover;
              background-position: center;
          }

          .blog-content {
              padding: 24px;
          }

          .blog-meta {
              display: flex;
              gap: 16px;
              margin-bottom: 16px;
              font-size: 0.875rem;
              color: var(--text-secondary);
          }

          .blog-title {
              font-size: 1.25rem;
              line-height: 1.4;
              color: var(--text-primary);
          }

          /* Forms */
          .contact-form {
              max-width: 100%;
          }

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

          .form-input {
              background: rgba(255, 255, 255, 0.05);
              border: 1px solid rgba(255, 255, 255, 0.1);
              padding: 14px 20px;
              border-radius: 8px;
              color: white;
              font-size: 1rem;
              transition: all 0.3s ease;
              width: 100%;
          }

          .form-input:focus {
              outline: none;
              border-color: #FFFFFF;
              background: rgba(255, 255, 255, 0.08);
          }

          .form-input::placeholder {
              color: var(--text-secondary);
          }

          textarea.form-input {
              resize: vertical;
              min-height: 120px;
              font-family: inherit;
          }

          .form-checkbox {
              display: flex;
              align-items: flex-start;
              gap: 12px;
              margin: 16px 0;
          }

          .form-checkbox input[type="checkbox"] {
              margin-top: 4px;
              width: 18px;
              height: 18px;
              cursor: pointer;
          }

          .form-checkbox label {
              color: var(--text-secondary);
              font-size: 0.875rem;
              line-height: 1.5;
              cursor: pointer;
          }

          /* Footer */
          footer {
              background: rgba(30, 30, 30, 0.98);
              padding: 60px 5% 40px;
              border-top: 1px solid var(--border-color);
          }

          .footer-container {
              max-width: 1200px;
              margin: 0 auto;
              text-align: center;
          }

          .footer-cta {
              margin-bottom: 60px;
          }

          .footer-cta h2 {
              margin-bottom: 20px;
              color: var(--text-primary);
          }

          .footer-cta p {
              max-width: 600px;
              margin: 0 auto 32px;
              color: var(--text-secondary);
          }

          .footer-bottom {
              padding-top: 40px;
              border-top: 1px solid var(--border-color);
              color: var(--text-secondary);
              font-size: 0.875rem;
          }

          /* Dropdown Menu */
    .dropdown-menu {
        position: fixed;
        top: 0;
        right: -400px;
        width: 400px;
        height: 100vh;
        background: var(--dark-secondary);
        transition: right 0.3s ease;
        z-index: 1002;
        padding: 30px;
        overflow-y: auto;
    }

    .dropdown-menu.active {
        right: 0;
    }

    .dropdown-close {
        position: absolute;
        top: 30px;
        right: 30px;
        background: transparent;
        border: none;
        color: var(--text-secondary);
        font-size: 0.9rem;
        cursor: pointer;
    }

    .dropdown-menu-inner {
        margin-top: 80px;
    }

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

    .menu-section a {
        color: var(--text-primary);
        font-size: 1.25rem;
        text-decoration: none;
        transition: color 0.3s ease;
        padding: 10px 0;
    }

    .menu-section a:hover {
        color: var(--primary-color);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

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

          .menu-section a {
              color: var(--text-primary);
              font-size: 1.25rem;
              text-decoration: none;
              transition: color 0.3s ease;
              padding: 10px 0;
          }

          .menu-section a:hover {
              color: #FFFFFF;
          }

          .menu-overlay {
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background: rgba(0, 0, 0, 0.5);
              opacity: 0;
              visibility: hidden;
              transition: all 0.3s ease;
              z-index: 999;
          }

          .menu-overlay.active {
              opacity: 1;
              visibility: visible;
          }

          .social-links {
              display: flex;
              gap: 20px;
              margin-top: 40px;
          }

          .social-links img {
              width: 20px;
              height: 20px;
              filter: brightness(0) invert(1);
          }

          /* Podcast */
          .podcast-grid {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
              gap: 30px;
              margin-bottom: 40px;
          }

          /* Responsive */
          @media (max-width: 992px) {
              .case-study-container {
                  grid-template-columns: 1fr;
                  text-align: center;
              }

              .contact-container {
                  flex-direction: column;
              }
          }

          @media (max-width: 768px) {
              .dropdown-menu {
              position: fixed;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              width: 90%;
              max-width: 600px;
              max-height: 85vh;
              background: rgba(30, 30, 30, 0.98);
              backdrop-filter: blur(20px);
              border-radius: 20px;
              opacity: 0;
              visibility: hidden;
              transition: all 0.3s ease;
              z-index: 1002;
              padding: 30px;
              overflow-y: auto;
              box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
                  width: 100%;
                  right: -100%;
              }

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

          /* Większe logo w nawigacji */
    .navbar .logo img {
      height: 60px !important;
      max-height: 60px !important;
      width: auto;
    }

    /* Większe logo w footerze */
    footer .logo img,
    footer img {
      height: 60px !important;
      max-height: 60px !important;
      width: auto;
    }


    /* Opcjonalnie - jeszcze większe logo w footerze */
    .footer-container img {
      height: 60px !important;
      max-height: 60px !important;
    }

    .dropdown-menu.active {
      opacity: 1;
      visibility: visible;
    }
    </style>
