@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-color: #050505;
  --text-color: #f0f0f0;
  --accent-color: #1a73e8; /* Subtle blue tech accent */
  --accent-glow: rgba(26, 115, 232, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--text-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s ease, height 0.3s ease;
}

@media (max-width: 768px) {
  .cursor { display: none !important; }
}

.cursor.hovered {
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 1px solid var(--text-color);
}

/* Typography Utilities */
.text-reveal-wrapper {
  overflow: hidden;
  display: inline-block;
}

.text-reveal {
  display: inline-block;
  transform: translateY(100%);
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--text-color);
  transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
  z-index: 10;
}

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

.hero h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  opacity: 0.8;
  max-width: 600px;
}

/* 3D Canvas */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  touch-action: none;
}
#canvas-container canvas {
  pointer-events: none !important;
  touch-action: none !important;
}

/* Services Section */
.services {
  position: relative;
  min-height: 100vh;
  padding: 10vh 10vw;
  z-index: 10;
  background: linear-gradient(to bottom, transparent, rgba(5,5,5,1) 20%);
}

.section-header {
  margin-bottom: 6rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 5rem);
  text-transform: uppercase;
}

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

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, var(--accent-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

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

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #a0a0a0;
  font-size: 0.95rem;
}

/* Trust / Visual Section */
.trust-section {
  position: relative;
  padding: 10vh 10vw;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10vh;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 5vw;
}

.trust-row.reverse {
  flex-direction: row-reverse;
}

.trust-image-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4/3;
}

.trust-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1); /* For parallax effect */
}

.trust-text {
  flex: 1;
}

.trust-text h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 2rem;
}

.trust-text p {
  font-size: 1.1rem;
  color: #a0a0a0;
  max-width: 500px;
}

/* Footer / CTA */
footer {
  padding: 10vh 10vw 5vh;
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-header {
  font-size: clamp(3rem, 6vw, 6rem);
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.cta-button {
  display: inline-block;
  padding: 1.5rem 4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-color);
  background: var(--text-color);
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  margin-top: 10vh;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 0 5vw;
  }
  .trust-row, .trust-row.reverse {
    flex-direction: column;
  }
  .services {
    padding: 10vh 5vw;
  }
  .modal-content {
    width: 95%;
    padding: 2rem;
  }
}

/* Accessibility */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

/* Floating Contact Widget */
.floating-widget {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}
.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-btn:hover {
  transform: scale(1.1) translateY(-5px);
}
.btn-whatsapp {
  background-color: #25D366;
}
.btn-phone {
  background-color: var(--accent-color);
}

/* Modal Service Form */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.modal-overlay.active {
  pointer-events: all;
}

/* Exit Intent Modal */
.exit-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 1rem;
}
.exit-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.exit-modal-content {
  background: var(--bg-color);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(0);
}
.exit-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.exit-close:hover {
  background: rgba(255,255,255,0.12);
}

@media (max-width: 640px) {
  .exit-modal-content {
    padding: 2rem 1.5rem !important;
    border-radius: 20px !important;
  }
  .exit-modal-content h2 {
    font-size: 1.5rem !important;
  }
  .exit-modal-content p {
    font-size: 0.95rem !important;
  }
}

.modal-content {
  background: var(--bg-color);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 4rem;
  width: 100%;
  max-width: 500px;
  position: relative;
  transform: translateY(50px);
}
.close-modal {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #a0a0a0;
  font-size: 0.9rem;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: 12px;
  font-family: var(--font-body);
}
.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: var(--text-color);
  color: var(--bg-color);
  border: none;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 1rem;
}

/* Magnetic Button Helper */
.magnetic-btn {
  display: inline-block;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--glass-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}
.stars {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* AISO (AI Search Optimization) Structured Content Styles */
.ai-summary-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}
.ai-summary-box h3 {
    margin-top: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.ai-summary-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}
.expert-note {
    background: rgba(37, 211, 102, 0.05);
    border-left: 4px solid #25D366;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #c0c0c0;
    position: relative;
}
.expert-note::before {
    content: "👨‍🔧 Uzman Tavsiyesi:";
    display: block;
    font-weight: bold;
    color: #25D366;
    margin-bottom: 0.5rem;
    font-style: normal;
}
.warning-box {
    background: rgba(255, 59, 48, 0.05);
    border: 1px solid rgba(255, 59, 48, 0.2);
    border-left: 4px solid #ff3b30;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}
.warning-box strong {
    color: #ff3b30;
    display: block;
    margin-bottom: 0.5rem;
}
.decision-tree {
    background: #111;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}
.decision-tree ul {
    list-style-type: none;
    padding-left: 1rem;
    border-left: 1px dashed rgba(255,255,255,0.2);
}
.decision-tree li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.decision-tree li::before {
    content: "↳";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}
.checklist {
    list-style: none;
    padding: 0;
}
.checklist li {
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    background: rgba(255,255,255,0.02);
    margin-bottom: 0.5rem;
    border-radius: 4px;
    position: relative;
}
.checklist li::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    color: #25D366;
    font-weight: bold;
}

/* Ultra SaaS Knowledge Center UI */
.saas-search-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.saas-search-container:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.1);
}
.saas-search-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    width: 100%;
    outline: none;
}
.saas-search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.saas-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}
.saas-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}
.saas-chip:hover {
    background: var(--accent-color);
    color: #111;
    border-color: var(--accent-color);
}
.saas-category-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}
.saas-category-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.saas-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 12px;
}
.saas-support-banner {
    background: linear-gradient(135deg, rgba(37,211,102,0.1) 0%, rgba(17,17,17,1) 100%);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

/* Enterprise CRO & Accessibility Styles */

/* 1. Accessibility Focus States */
*:focus-visible {
    outline: 2px solid var(--accent-color) !important;
    outline-offset: 4px !important;
    border-radius: 2px;
}

/* 2. Floating Contact Widget (Desktop) */
.floating-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}
.floating-wa {
    background: #25D366;
}
.floating-call {
    background: var(--accent-color);
}
.pulse-cta {
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.pulse-call {
    animation: pulse-ring-call 2s infinite;
}
@keyframes pulse-ring-call {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 102, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
}

/* 3. Mobile Sticky Bottom CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    z-index: 9998;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
.mobile-sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ====================================================
   MOBİL - TEK KESİN BLOK (v-final)
   ==================================================== */

/* Breadcrumb styles */
.breadcrumb-container {
    padding: 2vh 10vw 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Hamburger buton - sadece mobilde görünür */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 99999;
    position: relative;
}
.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile sticky bar - desktop'ta gizli */
.mobile-sticky-cta { display: none; }

@media (max-width: 768px) {

    /* === NAV === */
    .menu-toggle {
        display: flex !important;
        padding: 12px !important;
        width: 48px !important;
        height: 48px !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent !important;
        touch-action: manipulation !important;
        z-index: 99999 !important;
        position: relative !important;
        background: rgba(255,255,255,0.06) !important;
        border-radius: 12px !important;
        transition: background 0.2s ease !important;
    }
    .menu-toggle:active {
        background: rgba(255,255,255,0.12) !important;
    }
    .menu-toggle span {
        height: 2.5px !important;
        border-radius: 3px !important;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg) !important;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg) !important;
    }

    nav {
        mix-blend-mode: normal !important;
        background: #080808 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 0.8rem 1.2rem !important;
        z-index: 99999 !important;
        height: 64px !important;
        touch-action: manipulation !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }

    .logo {
        font-size: 1.1rem !important;
        z-index: 99999 !important;
    }

    /* === MENU OVERLAY === */
    ul.nav-links {
        position: fixed !important;
        top: 0 !important; left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(5,5,5,0.98) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2.5rem !important;
        list-style: none !important;
        margin: 0 !important; padding: 0 !important;
        z-index: 99998 !important;
        transform: translateX(110%) !important;
        transition: transform 0.4s cubic-bezier(0.4,0,0.2,1) !important;
    }
    ul.nav-links.active {
        transform: translateX(0) !important;
    }
    ul.nav-links li a {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        color: #fff !important;
        text-decoration: none !important;
        letter-spacing: -0.02em;
    }

    /* === HERO: boşluk düzelt === */
    .breadcrumb-container {
        padding: 6px 5vw 0 !important;
        font-size: 0.7rem !important;
        opacity: 0.5 !important;
    }

    .hero {
        padding-top: 70px !important;
        min-height: 70vh !important;
        justify-content: center !important;
    }

    /* === TAŞMA ENGELLEYİCİ === */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    * { box-sizing: border-box; }

    /* === FLOATING WIDGET: mobilde gizli === */
    .floating-widget { display: none !important; }

    /* === MOBİL ALT BAR === */
    .mobile-sticky-cta {
        display: flex !important;
        position: fixed !important;
        bottom: 14px !important;
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        background: rgba(12,12,12,0.93) !important;
        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        border-radius: 18px !important;
        padding: 6px !important;
        gap: 6px !important;
        z-index: 8900 !important;
        box-shadow: 0 -4px 24px rgba(0,0,0,0.5) !important;
    }

    .saas-btn-call,
    .saas-btn-wa {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        padding: 13px 6px !important;
        border-radius: 13px !important;
        text-decoration: none !important;
        color: #fff !important;
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.2px !important;
        min-width: 0 !important;
    }
    .saas-btn-call svg,
    .saas-btn-wa svg {
        width: 24px !important;
        height: 24px !important;
        fill: #fff !important;
    }
    .saas-btn-call {
        background: linear-gradient(145deg,#1a6fff,#003fd6) !important;
        box-shadow: 0 4px 14px rgba(26,111,255,0.45) !important;
    }
    .saas-btn-wa {
        background: linear-gradient(145deg,#25D366,#128C7E) !important;
        box-shadow: 0 4px 14px rgba(37,211,102,0.45) !important;
    }
}

/* === FOOTER ULTRA BUTONLAR (Ultra SaaS) === */
.footer-ultra-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    min-width: 240px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.footer-ultra-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.footer-ultra-btn:hover {
    transform: translateY(-4px) scale(1.02);
}
.footer-ultra-btn:hover::before {
    opacity: 1;
}
.footer-ultra-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition-duration: 0.1s;
}
.footer-ultra-btn > * {
    position: relative;
    z-index: 1;
}
.footer-ultra-call {
    background: linear-gradient(135deg,#0055ff,#003acc);
    box-shadow: 0 10px 40px rgba(0,85,255,0.4);
    border: 1px solid rgba(255,255,255,0.12);
}
.footer-ultra-call:hover {
    box-shadow: 0 16px 50px rgba(0,85,255,0.55);
    border-color: rgba(255,255,255,0.25);
}
.footer-ultra-wa {
    background: linear-gradient(135deg,#25D366,#128C7E);
    box-shadow: 0 10px 40px rgba(37,211,102,0.4);
    border: 1px solid rgba(255,255,255,0.12);
}
.footer-ultra-wa:hover {
    box-shadow: 0 16px 50px rgba(37,211,102,0.55);
    border-color: rgba(255,255,255,0.25);
}
.footer-ultra-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-ultra-btn:hover .footer-ultra-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255,255,255,0.25);
}
.footer-ultra-icon svg { width: 28px; height: 28px; fill: #fff; }
.footer-ultra-text { display: flex; flex-direction: column; text-align: left; }
.footer-ultra-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.footer-ultra-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

@media (max-width: 640px) {
    .footer-ultra-btn {
        flex: 1 !important;
        min-width: 0 !important;
        padding: 0.9rem 0.6rem !important;
        gap: 0.5rem !important;
        border-radius: 14px !important;
        justify-content: center !important;
    }
    .footer-ultra-icon {
        width: 36px !important;
        height: 36px !important;
        border-radius: 10px !important;
    }
    .footer-ultra-icon svg { width: 18px !important; height: 18px !important; }
    .footer-ultra-main { font-size: 0.9rem !important; }
    .footer-ultra-sub { font-size: 0.55rem !important; letter-spacing: 0.5px !important; }
    footer > address > div:first-of-type {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        padding: 0 8px !important;
        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}
