/* ==========================================================================
   main.css - SMM Panel Landing Page Styles
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables
   ========================================================================== */
   :root {
    /* Colors */
    --color-primary: #152039;
    --color-accent: #8e972b;
    --color-white: #fff;
    --color-dark: #1c1c1c;
    --color-gray: #718096;
    --color-gray-light: #f9f9f9;
    --color-gray-lighter: #f7f7f7;
    --color-text-dark: #1a2128;
    --color-text-secondary: #232e37;
    --color-text-muted: #434d56;
  
    /* Platform Colors */
    --color-instagram: #DF238B;
    --color-youtube: #EB2929;
    --color-facebook: #1D92CF;
    --color-tiktok: #3F3357;
    --color-twitch: #6441A5;
    --color-twitter: #33CCFF;
  
    /* Shadows */
    --shadow-card: 14px 27px 45px 4px rgba(112, 144, 176, 0.05);
    --shadow-faq: 0px 4px 20px 0 rgba(166, 166, 166, 0.2);
    --shadow-testimonial: 14px 17px 40px 4px rgba(112, 144, 176, 0.08);
  
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 45px;
  
    /* Spacing */
    --gap-sm: 10px;
    --gap-md: 14px;
    --gap-lg: 15px;
    --gap-xl: 26px;
    --gap-2xl: 24px;
  
    /* Typography */
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
  }
  
  /* ==========================================================================
     2. Reset & Base
     ========================================================================== */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.5;
    color: var(--color-dark);
    background: var(--color-white);
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  p {
    margin: 0;
  }

  
  /* ==========================================================================
     4. Hero Section
     ========================================================================== */
  .hero {
    width: 100%;
    min-height: 548px;
    background: var(--color-primary) url('img/hero-bg.png') no-repeat center;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }
  
  .hero .container {
    position: relative;
    z-index: 10;
  }
  
  .hero-gradient {
    position: absolute;
    right: 10%;
    top: 20%;
    z-index: 1;
  }
  
  .hero-logo-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
    padding-top: 20px;
  }
  
  .hero-logo {
    max-width: 200px;
    height: auto;
    position: relative;
    z-index: 2;
  }
  
  .hero-title {
    font-size: 50px;
    font-weight: var(--font-weight-semibold);
    text-align: left;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 36px;
    }
  }
  
  .hero-title-white {
    color: var(--color-white);
  }
  
  .hero-title-accent {
    color: var(--color-accent);
  }
  
  .hero-image {
    position: absolute;
    right: 10vw;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    height: auto;
    width: auto;
    max-height: 95%;
    object-fit: contain;
  }

  .hero-wave-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url('img/hero-bg.png') no-repeat center bottom;
    background-size: 100% auto;
    z-index: 3;
    pointer-events: none;
  }
  
  @media (max-width: 992px) {
    .hero-image {
      position: relative;
      max-width: 250px;
      margin: 30px auto 0;
      bottom: auto;
      right: auto;
      left: auto;
      display: block;
    }
  }
  
  .hero-dots {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
  }
  
  /* ==========================================================================
     5. Services Section
     ========================================================================== */
  .services-bg {
    width: 100%;
    background: var(--color-white);
    padding: 60px 0;
  }
  
  .services-header {
    margin-bottom: 40px;
  }
  
  .services-title {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 10px;
  }
  
  .services-subtitle {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-align: center;
    color: var(--color-gray);
  }
  
  .services-column {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    margin-bottom: 20px;
  }
  
  .service-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    gap: var(--gap-sm);
    padding: 18px 21px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .service-card:hover {
    transform: translateY(-2px);
    box-shadow: 14px 27px 45px 4px rgba(112, 144, 176, 0.1);
  }
  
  .service-card-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: var(--gap-lg);
  }
  
  .service-icon-wrapper {
    flex-shrink: 0;
    width: 61px;
    height: 61px;
  }
  
  .service-icon-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--gap-md);
  }
  
  .service-icon {
    width: 61px;
    height: 61px;
  }
  
  .service-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
  }
  
  .service-title {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    text-align: left;
    color: var(--color-dark);
    margin-bottom: 4px;
  }
  
  .service-title-sm {
    font-size: 16px;
  }
  
  .service-subtitle {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-align: left;
    color: var(--color-gray);
  }
  
  /* ==========================================================================
     6. CTA Section
     ========================================================================== */
  .cta-section {
    padding: 80px 0 60px 0;
    margin-top: 40px;
  }
  
  /* CTA Header Section (Hero Hemen Altında) */
  .cta-header-section {
    position: relative;
    margin-top: -20vh;
    padding-bottom: 60px;
    z-index: 10;
  }

  .cta-heading {
    font-size: 44px;
    font-weight: var(--font-weight-bold);
    text-align: right;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.2;
    padding: 0 0 20px 0;
  }

  @media (max-width: 992px) {
    .cta-header-section {
      margin-top: -80px;
    }

    .cta-heading {
      font-size: 32px;
      text-align: center;
      margin-top: 30px;
      padding: 0;
    }
  }
  
  .cta-split-section {
    margin-bottom: 40px;
  }
  
  .cta-split-left {
    border-radius: var(--radius-xl);
    background: transparent;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 403px;
  }

  .cta-split-left-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--color-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  
  @media (max-width: 992px) {
    .cta-split-left {
      flex-direction: column;
    }
    
    .cta-split-left-image {
      flex: 0 0 auto;
      min-height: 200px;
    }
  }

  .cta-split-left-content {
    flex: 0 0 50%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background: var(--color-gray-light);
    gap: 24px;
  }
  
  @media (max-width: 992px) {
    .cta-split-left-content {
      flex: 0 0 auto;
    }
  }
  
  .cta-split-right {
    border-radius: var(--radius-xl);
    background: #1A202C;
    padding: 30px 20px;
    overflow: hidden;
    min-height: 403px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
  }

  .cta-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .cta-swiper .swiper-wrapper {
    max-width: 100%;
  }

  .cta-swiper .swiper-slide {
    height: auto;
    max-width: 100%;
    overflow: hidden;
  }

  .cta-right-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .cta-right-text {
    flex: 1;
    z-index: 2;
    min-width: 0;
    max-width: 60%;
  }
  
  @media (max-width: 992px) {
    .cta-split-right {
      min-height: auto;
      padding: 30px 20px;
      margin-top: 20px;
    }
  }
  
  .cta-swiper {
    width: 100%;
    height: 100%;
  }
  
  .cta-swiper .swiper-slide {
    height: auto;
  }
  
  .cta-dots {
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    transform: none !important;
  }
  
  .cta-dot {
    flex-grow: 0;
    flex-shrink: 0;
    height: 16px !important;
    width: 16px !important;
    border-radius: 16px !important;
    background: #4A5568 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1 !important;
    margin: 0 !important;
  }
  
  .cta-dot-active {
    width: 48px !important;
    background: var(--color-white) !important;
  }
  
  .cta-split-right {
    position: relative;
  }
  
  .cta-title-left {
    max-width: 100%;
    margin: 0;
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    text-align: left;
    color: var(--color-text-secondary);
  }
  
  @media (max-width: 768px) {
    .cta-title-left {
      font-size: 28px;
    }
  }
  
  .cta-title-right {
    max-width: 100%;
    margin: 0 0 15px 0;
    font-size: 25px;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    text-align: left;
    color: var(--color-white);
  }
  
  @media (max-width: 768px) {
    .cta-title-right {
      font-size: 24px;
    }
  }
  
  .cta-text-left {
    max-width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    color: var(--color-text-secondary);
  }
  
  .cta-text-right {
    max-width: 100%;
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
    color: #E2E8F0;
  }
  
  /* ==========================================================================
     7. Mockup Section
     ========================================================================== */
  .mockup-container {
    width: 601.02px;
    height: 367.01px;
  }
  
  .mockup-frame {
    width: 508.01px;
    height: 343.51px;
  }
  
  .mockup-screen {
    width: 492.01px;
    height: 318.04px;
    position: absolute;
    left: 1759.79px;
    top: 1279.01px;
    overflow: hidden;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    background: var(--color-white);
  }
  
  .mockup-screen-inner {
    width: 614.37px;
    height: 398.54px;
    position: absolute;
    left: -0.56px;
    top: -0.49px;
    overflow: hidden;
    background: var(--color-white);
  }
  
  .mockup-screen-image {
    width: 1164.61px;
    height: 752.82px;
    position: absolute;
    left: -0.34px;
    top: -0.34px;
  }
  
  .mockup-screen-overlay {
    width: 492.13px;
    height: 319.11px;
    position: absolute;
    left: -0.76px;
    top: -1.79px;
    background: var(--color-white);
  }
  
  .mockup-base {
    width: 502.01px;
    height: 12px;
    position: absolute;
    left: 1766.92px;
    top: 1601.37px;
    background: linear-gradient(to bottom, #2d2d2d 0%, #000 100%);
  }
  
  .mockup-stand {
    width: 601.02px;
    height: 23.5px;
  }
  
  .mockup-stand-texture {
    width: 601.02px;
    height: 20px;
    position: absolute;
    left: 1717.93px;
    top: 1615.31px;
    border-bottom-left-radius: 23.66px;
    border-bottom-right-radius: 23.66px;
    background: url('texture.png');
    background-size: 3549.09px auto;
    background-repeat: repeat;
  }
  
  .mockup-arrow {
    width: 79px;
    height: 78.28px;
  }
  
  .mockup-arrow-img {
    width: 79px;
    height: 78.28px;
    position: absolute;
    left: 1726.5px;
    top: 1307.5px;
    object-fit: cover;
  }
  
  .mockup-arrow-bg {
    width: 89.05px;
    height: 86.9px;
    position: absolute;
    left: 1642.47px;
    top: 1303.19px;
    background: var(--color-white);
  }
  
  /* ==========================================================================
     8. FAQ Section
     ========================================================================== */
  .faq-section {
    padding: 60px 0;
  }
  
  @media (max-width: 768px) {
    .faq-section {
      padding: 40px 0;
    }
  }
  
  .faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
  }
  
  @media (max-width: 768px) {
    .faq-header {
      margin-bottom: 30px;
      gap: 8px;
    }
  }
  
  .faq-title-main {
    font-size: 26px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    color: #000;
    margin-bottom: 8px;
  }
  
  @media (max-width: 768px) {
    .faq-title-main {
      font-size: 22px;
      margin-bottom: 6px;
    }
  }
  
  .faq-subtitle {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-align: center;
    color: rgba(119, 119, 119, 0.6);
  }
  
  @media (max-width: 768px) {
    .faq-subtitle {
      font-size: 12px;
      padding: 0 20px;
    }
  }
  
  .faq-title {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    text-align: left;
    color: var(--color-dark);
    margin-bottom: 30px;
  }
  
  @media (max-width: 768px) {
    .faq-title {
      font-size: 24px;
      text-align: center;
      margin-bottom: 20px;
    }
  }
  
  .faq-grid {
    display: flex;
    gap: var(--gap-xl);
  }
  
  @media (max-width: 992px) {
    .faq-grid {
      flex-direction: column;
      gap: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .faq-grid {
      gap: 15px;
    }
  }
  
  .faq-column {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    flex: 1;
  }
  
  @media (max-width: 768px) {
    .faq-column {
      gap: 12px;
    }
  }
  
  .faq-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-self: stretch;
    flex-grow: 0;
    flex-shrink: 0;
    gap: var(--gap-sm);
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: var(--shadow-faq);
    transition: all 0.3s ease;
  }
  
  @media (max-width: 768px) {
    .faq-item {
      padding: 14px;
      gap: 8px;
    }
  }
  
  .faq-item-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
    gap: var(--gap-xl);
    cursor: pointer;
    width: 100%;
    user-select: none;
  }
  
  @media (max-width: 768px) {
    .faq-item-header {
      gap: 10px;
      align-items: flex-start;
    }
  }
  
  .faq-item-header:hover {
    opacity: 0.8;
  }
  
  .faq-item-icon {
    flex-grow: 0;
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    min-width: 19px;
  }
  
  @media (max-width: 768px) {
    .faq-item-icon {
      width: 16px;
      height: 16px;
      min-width: 16px;
    }
  }
  
  .faq-item-icon svg {
    transition: opacity 0.3s ease;
    display: block;
  }
  
  .faq-icon-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 19px;
    height: 19px;
  }
  
  @media (max-width: 768px) {
    .faq-icon-plus {
      width: 16px;
      height: 16px;
    }
  }
  
  .faq-icon-minus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 4px;
  }
  
  @media (max-width: 768px) {
    .faq-icon-minus {
      width: 14px;
      height: 3px;
    }
  }
  
  .faq-item-question {
    flex-grow: 1;
    flex-shrink: 1;
    width: auto;
    min-width: 0;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-align: left;
    text-transform: capitalize;
    color: var(--color-text-dark);
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  @media (max-width: 768px) {
    .faq-item-question {
      font-size: 13px;
      line-height: 1.5;
      padding-right: 5px;
    }
  }
  
  .faq-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
    width: 100%;
  }
  
  .faq-item-expanded .faq-item-content {
    max-height: 500px;
    padding-top: 14px;
  }
  
  @media (max-width: 768px) {
    .faq-item-expanded .faq-item-content {
      padding-top: 12px;
    }
  }
  
  .faq-item-answer {
    width: 100%;
    max-width: 582px;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    text-align: left;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .faq-item-answer {
      font-size: 11px;
      line-height: 1.5;
      max-width: 100%;
    }
  }
  
  .faq-item-expanded {
    height: auto;
  }
  
  .faq-item-expanded .faq-icon-plus {
    display: none;
  }
  
  .faq-item-expanded .faq-icon-minus {
    display: block !important;
  }
  
  .faq-item:not(.faq-item-expanded) .faq-icon-minus {
    display: none !important;
  }
  
  .faq-item:not(.faq-item-expanded) .faq-icon-plus {
    display: block !important;
  }
  
  
  /* ==========================================================================
     9. Testimonials Section
     ========================================================================== */
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 40px;
  }
  
  .testimonials-title {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 8px;
  }
  
  .testimonials-subtitle {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-align: center;
    color: var(--color-gray);
  }
  
  .testimonials-swiper {
    width: 100%;
    padding: 40px 0 60px;
    overflow: visible;
  }
  
  .testimonials-swiper .swiper-slide {
    height: auto;
  }
  
  .testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 260px;
    gap: 10px;
    padding: 21px;
    border-radius: var(--radius-xl);
    background: var(--color-white);
    box-shadow: var(--shadow-testimonial);
    height: 100%;
  }
  
  .testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 19px;
  }
  
  .testimonial-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
    flex-grow: 0;
    flex-shrink: 0;
    gap: var(--gap-md);
  }
  
  .testimonial-avatar {
    flex-grow: 0;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonial-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
    gap: 6px;
  }
  
  .testimonial-name {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    color: var(--color-dark);
  }
  
  .testimonial-role {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-align: left;
    color: var(--color-gray);
  }
  
  .testimonial-rating {
    display: flex;
    gap: 4px;
  }
  
  .testimonial-star {
    width: 16px;
    height: 16px;
    color: #FFD700;
  }
  
  .testimonial-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 89px;
    height: 22px;
    gap: 10px;
    padding: 6px 26px;
    border-radius: 39px;
    background: rgba(142, 151, 43, 0.2);
  }
  
  .testimonial-stars {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1px;
  }
  
  .testimonial-stars svg {
    flex-grow: 0;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
  }
  
  .testimonial-text {
    width: 100%;
    max-width: 272px;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    text-align: center;
    color: var(--color-gray);
  }
  
  /* Swiper Navigation Buttons */
  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    color: var(--color-primary);
    width: 44px;
    height: 44px;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .testimonials-swiper .swiper-button-next:hover,
  .testimonials-swiper .swiper-button-prev:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
  }
  
  .testimonials-swiper .swiper-button-next::after,
  .testimonials-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
  }
  
  /* Swiper Pagination */
  .testimonials-swiper .swiper-pagination {
    bottom: 0;
  }
  
  .testimonials-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-gray);
    opacity: 0.5;
    transition: all 0.3s ease;
  }
  
  .testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
    width: 24px;
    border-radius: 5px;
  }
  
  @media (max-width: 768px) {
    .testimonials-swiper {
      padding: 30px 0 50px;
    }
    
    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
      width: 36px;
      height: 36px;
    }
    
    .testimonials-swiper .swiper-button-next::after,
    .testimonials-swiper .swiper-button-prev::after {
      font-size: 14px;
    }
  }
  
  /* ==========================================================================
     10. Footer
     ========================================================================== */
  .footer {
    width: 100%;
    margin-top: 60px;
  }

  /* Footer Top Section */
  .footer-top {
    width: 100%;
    min-height: 120px;
    padding: 30px 0;
    background: #1a1a1a;
  }
  
  .footer-top-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  @media (max-width: 768px) {
    .footer-top-inner {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  }

  .footer-logo-section {
    display: flex;
    align-items: center;
  }

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

  /* Hero Logo */
  .hero-logo {
    max-width: 239px;
    height: auto;
    object-fit: contain;
  }

  .footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }
  
  @media (max-width: 768px) {
    .footer-social {
      justify-content: center;
    }
  }

  .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
    text-decoration: none;
  }

  .footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .footer-social-icon svg {
    width: 20px;
    height: 20px;
  }

  /* Footer Bottom Section */
  .footer-bottom {
    width: 100%;
    min-height: 60px;
    padding: 20px 0;
    background: #fff;
  }
  
  .footer-bottom-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  @media (max-width: 768px) {
    .footer-bottom-inner {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }

  .footer-copyright {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 0;
  }

  .footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .footer-payment-logo {
    width: 50px;
    height: 30px;
    flex-shrink: 0;
  }

  .footer-payment-logo svg {
    width: 100%;
    height: 100%;
  }

  .footer-payment-security {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
  }

  .footer-payment-security svg {
    width: 16px;
    height: 20px;
    flex-shrink: 0;
  }

  .footer-payment-security span {
    font-size: 12px;
    font-weight: 500;
    color: #28a745;
  }
  
  /* ==========================================================================
     11. Utility Classes
     ========================================================================== */
  
  /* Display */
  .flex { display: flex; }
  .flex-col { flex-direction: column; }
  .inline-flex { display: inline-flex; }
  
  /* Alignment */
  .items-start { align-items: flex-start; }
  .items-center { align-items: center; }
  .items-end { align-items: flex-end; }
  .justify-start { justify-content: flex-start; }
  .justify-center { justify-content: center; }
  .justify-end { justify-content: flex-end; }
  .justify-between { justify-content: space-between; }
  .self-stretch { align-self: stretch; }
  
  /* Flex */
  .flex-grow-0 { flex-grow: 0; }
  .flex-shrink-0 { flex-shrink: 0; }
  .flex-1 { flex: 1; }
  
  /* Gap */
  .gap-4 { gap: 4px; }
  .gap-8 { gap: 8px; }
  .gap-10 { gap: 10px; }
  .gap-14 { gap: 14px; }
  .gap-15 { gap: 15px; }
  .gap-22 { gap: 22px; }
  .gap-24 { gap: 24px; }
  .gap-26 { gap: 26px; }
  
  /* Position */
  .relative { position: relative; }
  .absolute { position: absolute; }
  
  /* Text */
  .text-left { text-align: left; }
  .text-center { text-align: center; }
  .text-right { text-align: right; }
  .text-capitalize { text-transform: capitalize; }
  
  /* Font Size */
  .text-xs { font-size: 12px; }
  .text-sm { font-size: 14px; }
  .text-base { font-size: 16px; }
  .text-lg { font-size: 18px; }
  .text-xl { font-size: 20px; }
  .text-2xl { font-size: 24px; }
  .text-3xl { font-size: 36px; }
  .text-4xl { font-size: 44px; }
  .text-5xl { font-size: 60px; }
  
  /* Font Weight */
  .font-medium { font-weight: 500; }
  .font-semibold { font-weight: 600; }
  .font-bold { font-weight: 700; }
  
  /* Colors */
  .text-white { color: var(--color-white); }
  .text-dark { color: var(--color-dark); }
  .text-gray { color: var(--color-gray); }
  .text-accent { color: var(--color-accent); }
  .text-primary { color: var(--color-primary); }
  
  .bg-white { background: var(--color-white); }
  .bg-primary { background: var(--color-primary); }
  .bg-gray-light { background: var(--color-gray-light); }
  .bg-accent { background: var(--color-accent); }
  
  /* Border Radius */
  .rounded-sm { border-radius: var(--radius-sm); }
  .rounded-md { border-radius: var(--radius-md); }
  .rounded-lg { border-radius: var(--radius-lg); }
  .rounded-xl { border-radius: var(--radius-xl); }
  .rounded-full { border-radius: 50%; }
  
  /* Shadows */
  .shadow-card { box-shadow: var(--shadow-card); }
  .shadow-faq { box-shadow: var(--shadow-faq); }
  .shadow-testimonial { box-shadow: var(--shadow-testimonial); }
  
  /* Overflow */
  .overflow-hidden { overflow: hidden; }
  
  /* Object Fit */
  .object-cover { object-fit: cover; }
  .object-contain { object-fit: contain; }
  .object-none { object-fit: none; }
  
  /* Width */
  .w-full { width: 100%; }
  
  /* Height */
  .h-full { height: 100%; }

  /* Services View All Button */
  .services-view-all-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 220px;
    height: 50px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 45px;
    background: #8e972b;
    box-shadow: 0px 21px 27px -10px rgba(142,151,43,0.47);
    border: none;
    cursor: pointer;
    padding: 0 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .services-view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 25px 35px -10px rgba(142,151,43,0.55);
  }

  .services-view-all-button-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .services-view-all-button-inner svg {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
  }

  .services-view-all-button-inner span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
  }

  /* CTA Buttons */
  .cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    overflow: hidden;
    border-radius: 45px;
    background: #8e972b;
    box-shadow: 0px 21px 27px -10px rgba(142,151,43,0.47);
    border: none;
    cursor: pointer;
    position: absolute;
    padding: 0;
  }

  .cta-button-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
    gap: 4px;
  }

  .cta-button-coupon {
    width: auto;
    min-width: 196px;
    position: relative;
    margin: 0;
    align-self: flex-start;
  }

  .cta-button-inner svg {
    flex-grow: 0;
    flex-shrink: 0;
    width: 21px;
    height: 21px;
    position: relative;
  }

  .cta-button-inner span {
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    color: #fff;
  }

  /* CTA Images */
  .cta-image-layer {
    width: 340.15px;
    height: 386px;
    position: absolute;
    left: 351.65px;
    top: 1238.5px;
    object-fit: cover;
  }

  .cta-arrow {
    width: auto;
    max-width: 35%;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
  }
  
  @media (max-width: 768px) {
    .cta-split-right {
      padding: 25px 15px;
      min-height: auto;
    }
    
    .cta-swiper {
      width: 100%;
    }
    
    .cta-right-content {
      flex-direction: column;
      align-items: center;
      gap: 15px;
      padding: 0;
    }
    
    .cta-right-text {
      text-align: center;
      width: 100%;
      max-width: 100%;
      padding: 0;
    }
    
    .cta-title-right {
      text-align: center;
      font-size: 22px;
      margin-bottom: 10px;
    }
    
    .cta-text-right {
      text-align: center;
      font-size: 13px;
      line-height: 1.5;
      padding: 0 10px;
    }
    
    .cta-dots {
      justify-content: center;
      margin-top: 15px;
      gap: 6px;
    }
    
    .cta-dot {
      width: 12px !important;
      height: 12px !important;
    }
    
    .cta-dot-active {
      width: 36px !important;
    }
    
    .cta-arrow {
      align-self: center;
      max-width: 200px;
      width: 100%;
      height: auto;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 480px) {
    .cta-split-right {
      padding: 20px 15px;
    }
    
    .cta-title-right {
      font-size: 20px;
    }
    
    .cta-text-right {
      font-size: 12px;
      padding: 0 5px;
    }
    
    .cta-arrow {
      max-width: 150px;
    }
    
    .cta-dots {
      margin-top: 12px;
    }
  }

  .cta-x-image {
    width: 72.75px;
    height: 72.72px;
    position: absolute;
    left: 707.52px;
    top: 1371.84px;
    object-fit: cover;
  }

  .cta-rectangle {
    position: absolute;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .cta-rectangle-1 {
    width: 280.46px;
    height: 402.33px;
    left: 447.44px;
    top: 126.5px;
  }

  .cta-rectangle-2 {
    width: 275.77px;
    height: 459.36px;
    left: 560.13px;
    top: 76.3px;
  }

  .cta-rectangle-3 {
    width: 193.74px;
    height: 324.21px;
    left: 708.61px;
    top: 189.34px;
  }

  /* CTA Star SVG */
  .cta-star-svg {
    width: 136.45px;
    height: 110.42px;
    position: absolute;
    left: 316.14px;
    top: 1281px;
  }

  /* CTA Fırsatlar Görseli */
  .cta-firsatlar-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  /* CTA Daily Orders Card */
  .cta-daily-orders {
    width: auto;
    max-width: 200px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin: 0;
    z-index: 10;
  }

  .cta-daily-orders-inner {
    width: 100%;
    min-width: 184px;
    min-height: 80px;
    position: relative;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }

  .cta-daily-orders-text {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .cta-daily-orders-label-1 {
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    color: #000;
    margin: 0;
    line-height: 1.2;
  }

  .cta-daily-orders-count {
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 20px;
    font-weight: 700;
    text-align: right;
    color: #000;
    margin: 0;
  }

  .cta-daily-orders-progress {
    width: 100%;
    height: 12.5px;
    border-radius: 9px;
    background: #e4f1fa;
    position: relative;
    margin-top: 0;
  }

  .cta-daily-orders-progress-bar {
    width: 65%;
    height: 12.5px;
    border-radius: 9px;
    background: #8e972b;
    position: absolute;
    left: 0;
    top: 0;
  }

  /* CTA Trust Card */
  .cta-trust-card {
    width: 100%;
    min-height: 402px;
    position: relative;
    margin: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, #f5f5f0 0%, #f0efe8 50%, #ebe9e0 100%);
    overflow: hidden;
  }

  .cta-trust-card-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 402px;
    position: relative;
    padding: 50px;
    overflow: visible;
  }

  .cta-trust-card-content {
    flex: 0 0 45%;
    max-width: 380px;
    position: relative;
    z-index: 10;
  }

  /* Sağ görsel alanı */
  .cta-trust-card-images {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .cta-trust-card-images img {
    height: 340px;
    width: auto;
    object-fit: contain;
  }

  @media (max-width: 992px) {
    .cta-trust-card-inner {
      flex-direction: column;
      padding: 40px 30px;
      min-height: auto;
    }

    .cta-trust-card-content {
      flex: 0 0 auto;
      max-width: 100%;
      margin-bottom: 20px;
      text-align: center;
    }

    .cta-trust-title,
    .cta-trust-text {
      text-align: center;
      max-width: 100%;
    }

    .cta-trust-button {
      margin: 0 auto;
    }

    .cta-trust-card-images {
      position: relative;
      right: auto;
      bottom: auto;
      width: 100%;
      height: auto;
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }

    .cta-trust-card-images img {
      height: auto;
      max-height: 280px;
      width: auto;
    }
  }

  .cta-trust-button-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .cta-trust-title {
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    color: #1c1c1c;
    margin: 0 0 16px 0;
    line-height: 1.3;
  }

  .cta-trust-text {
    max-width: 340px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #718096;
    margin: 0 0 28px 0;
    line-height: 1.7;
  }

  .cta-trust-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    overflow: hidden;
    border-radius: 45px;
    background: #8e972b;
    box-shadow: 0px 15px 30px -8px rgba(142,151,43,0.45);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cta-trust-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 20px 40px -8px rgba(142,151,43,0.55);
  }

  .cta-trust-button-inner svg {
    width: 18px;
    height: 18px;
  }

  .cta-trust-button-inner span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
  }
  