  :root{
    --primary:#364B89;
    --primary-dark:#364B89;
    --accent:#FFC857;
    --bg:#F7F9FC;
    --text:#111827;
    --muted:#4B5563;
    --border:#E7EBF3;
    --white:#fff;
    --whatsapp:#25D366;
    --instagram:#E4405F;
    --shadow-sm:0 1px 3px rgba(0,0,0,.1);
    --shadow-md:0 4px 12px rgba(0,0,0,.12);
    --shadow-lg:0 10px 30px rgba(0,0,0,.15);
  }
  *{box-sizing:border-box;margin:0;padding:0}
  body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;color:var(--text);background:#f5f5f5;line-height:1.6;padding-bottom:70px}
  
  /* HEADER */
  .header{
    position:sticky;
    top:0;
    background:linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-bottom:1px solid rgba(255,255,255,.1);
    z-index:100;
    box-shadow:var(--shadow-md);
  }
  .header-row{
    max-width:1280px;
    margin:0 auto;
    padding:0 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:72px;
  }
  
  /* Logo */
  .logo{
    display:flex;
    align-items:center;
    transition:transform .2s;
  }
  .logo:hover{
    transform:scale(1.02);
  }
  .logo img{
    height:40px;
    width:auto;
  }
  
  /* Desktop Menu */
  .nav-menu{
    display:flex;
    gap:32px;
    list-style:none;
  }
  .nav-menu a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:4px;
    transition:all .2s;
    position:relative;
  }
  .nav-menu a::after{
    content:'';
    position:absolute;
    bottom:-4px;
    left:0;
    width:0;
    height:2px;
    background:var(--accent);
    transition:width .3s;
  }
  .nav-menu a:hover::after{
    width:100%;
  }
  .nav-menu a:hover{
    color:var(--accent);
  }
  .dropdown-icon{
    font-size:11px;
    transition:transform .2s;
  }
  .nav-menu a:hover .dropdown-icon{
    transform:rotate(180deg);
  }
  
  /* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  min-width: 250px;
  padding: 10px 0;
  z-index: 1000;
}

.has-dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  padding: 12px 20px;
  display: block;
  color: #333;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
}

/* Submenu */
.dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  min-width: 280px;
  padding: 10px 0;
}

.dropdown-menu .has-dropdown:hover > .dropdown-submenu {
  display: block;
}
  
  /* Right Actions */
  .header-actions{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .icon-btn{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:all .25s cubic-bezier(0.4, 0, 0.2, 1);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
  }
  .icon-btn:hover{
    background:rgba(255,255,255,.2);
    border-color:rgba(255,255,255,.3);
    transform:translateY(-2px) scale(1.05);
    box-shadow:0 4px 12px rgba(0,0,0,.15);
  }
  .icon-btn:active{
    transform:translateY(0) scale(.98);
  }
  
  .btn{
    padding:12px 24px;
    border-radius:10px;
    font-weight:700;
    font-size:14px;
    cursor:pointer;
    transition:all .25s cubic-bezier(0.4, 0, 0.2, 1);
    border:none;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    position:relative;
    overflow:hidden;
  }
  .btn::before{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    width:0;
    height:0;
    border-radius:50%;
    background:rgba(255,255,255,.3);
    transform:translate(-50%, -50%);
    transition:width .6s, height .6s;
  }
  .btn:hover::before{
    width:300px;
    height:300px;
  }
  .btn span{
    position:relative;
    z-index:1;
  }
  .btn-primary{
    background:#fff;
    color:var(--primary);
    box-shadow:0 2px 8px rgba(255,255,255,.2);
  }
  .btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(255,255,255,.4);
  }
  .btn-primary:active{
    transform:translateY(0);
  }
  
  /* Mobile Hamburger */
  .hamburger{
    display:none;
    flex-direction:column;
    gap:4px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    border-radius:8px;
    cursor:pointer;
    padding:10px;
    transition:all .2s;
  }
  .hamburger:hover{
    background:rgba(255,255,255,.2);
  }
  .hamburger span{
    width:20px;
    height:2px;
    background:#fff;
    border-radius:2px;
    transition:all .3s;
  }
  .hamburger.active{
    background:rgba(255,255,255,.2);
  }
  .hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(6px, 6px);
  }
  .hamburger.active span:nth-child(2){
    opacity:0;
  }
  .hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px, -6px);
  }
  
  /* Mobile Menu Overlay */
  .mobile-menu{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform:translateX(-100%);
    opacity:0;
    transition:all .3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index:95;
    overflow-y:auto;
    box-shadow:var(--shadow-lg);
    padding-top:56px;
  }
  .mobile-menu-inner{
    padding:24px 20px;
  }
  .mobile-menu.open{
    transform:translateX(0);
    opacity:1;
  }
  .mobile-menu ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:4px;
  }
  .mobile-menu a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 16px;
    border-radius:10px;
    background:rgba(255,255,255,.06);
    transition:all .2s;
  }
  .mobile-menu a:hover,
  .mobile-menu a:active{
    background:rgba(255,255,255,.12);
    transform:translateX(4px);
  }
  
/* ==================== MOBILE MENU ==================== */

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #364B89 0%, #364B89 100%);
  transition: left 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  left: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  padding: 20px;
  background: #364B89);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
  max-width: 250px;
  height: auto;
}

/* Mobile Menu Inner */
.mobile-menu-inner {
  padding: 10px 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Mobile Nav Item */
.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 25px;
}

.mobile-nav-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Active State */
.mobile-nav-item.active > .mobile-nav-link i {
  transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-item.active > .mobile-submenu {
  display: block;
  max-height: 500px;
}

.mobile-submenu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu li:last-child {
  border-bottom: none;
}

.mobile-submenu a {
  display: block;
  padding: 12px 20px 12px 40px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mobile-submenu a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 45px;
}

/* Mobile Submenu Item (için nested) */
.mobile-submenu-item {
  position: relative;
}

.mobile-submenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 12px 40px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-submenu-item.active > .mobile-submenu-link i {
  transform: rotate(180deg);
}

/* Nested Submenu */
.mobile-submenu-nested {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.3);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-submenu-item.active > .mobile-submenu-nested {
  display: block;
  max-height: 400px;
}

.mobile-submenu-nested li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu-nested a {
  padding: 10px 20px 10px 60px;
  font-size: 13px;
}

.mobile-submenu-nested a:hover {
  padding-left: 65px;
}

/* Scrollbar Styling */
.mobile-menu::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.mobile-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
  
  /* Mobile Sticky Button Row */
  .mobile-sticky-bar{
    display:none;
    background:#fff;
    border-bottom:1px solid var(--border);
    padding:10px 16px;
    gap:8px;
    align-items:center;
    position:fixed;
    top:56px;
    left:0;
    right:0;
    z-index:88;
    box-shadow:var(--shadow-md);
    animation:slideDown .3s ease-out;
  }
  @keyframes slideDown{
    from{transform:translateY(-100%);opacity:0}
    to{transform:translateY(0);opacity:1}
  }
  .mobile-sticky-bar.visible{
    display:flex;
  }
  .mobile-sticky-bar .btn{
    flex:1;
    text-align:center;
    padding:12px 16px;
    font-size:13px;
    white-space:nowrap;
    background:var(--primary);
    color:#fff;
  }
  .mobile-sticky-bar .icon-btn{
    width:46px;
    height:46px;
    min-width:46px;
    background:var(--primary);
    color:#fff;
    border:none;
    font-size:17px;
  }
  .mobile-sticky-bar .icon-btn.whatsapp{
    background:var(--whatsapp);
  }
  
  /* Bottom Navigation Bar (Mobile Only) */
  .bottom-nav{
    display:none;
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:#fff;
    border-top:2px solid var(--border);
    z-index:95;
    box-shadow:0 -4px 12px rgba(0,0,0,.08);
  }
  .bottom-nav-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    max-width:100%;
  }
  .bottom-nav-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:12px 8px;
    text-decoration:none;
    color:var(--muted);
    font-size:11px;
    font-weight:700;
    border:none;
    background:none;
    cursor:pointer;
    transition:all .2s;
    position:relative;
    gap:6px;
  }
  .bottom-nav-item::before{
    content:'';
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:0;
    height:3px;
    background:var(--primary);
    transition:width .3s;
  }
  .bottom-nav-item:active::before{
    width:60%;
  }
  .bottom-nav-item:active{
    background:var(--bg);
    color:var(--primary);
  }
  .bottom-nav-item .icon{
    font-size:20px;
    transition:transform .2s;
  }
  .bottom-nav-item:active .icon{
    transform:scale(1.15);
  }
  .bottom-nav-item.phone .icon{
    color:var(--primary);
  }
  .bottom-nav-item.form .icon{
    color:var(--accent);
  }
  .bottom-nav-item.instagram .icon{
    color:var(--instagram);
  }
  .bottom-nav-item.reviews .icon{
    color:#f59e0b;
  }
  
  /* Modal */
  .modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    backdrop-filter:blur(4px);
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    z-index:110;
    animation:fadeIn .3s;
  }
  @keyframes fadeIn{
    from{opacity:0}
    to{opacity:1}
  }
  .modal.open{
    display:flex;
  }
  .modal-box{
    background:#fff;
    border-radius:20px;
    width:100%;
    max-width:480px;
    padding:36px;
    position:relative;
    box-shadow:var(--shadow-lg);
    max-height:90vh;
    overflow-y:auto;
    animation:modalSlideUp .3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  @keyframes modalSlideUp{
    from{transform:translateY(40px);opacity:0}
    to{transform:translateY(0);opacity:1}
  }
  .modal-close{
    position:absolute;
    top:16px;
    right:16px;
    background:var(--bg);
    border:none;
    font-size:20px;
    color:var(--muted);
    cursor:pointer;
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:all .2s;
    z-index:1;
  }
  .modal-close:hover{
    background:var(--border);
    color:var(--text);
    transform:rotate(90deg);
  }
  .modal h3{
    color:var(--primary);
    margin-bottom:8px;
    font-size:26px;
    font-weight:800;
  }
  .modal p{
    color:var(--muted);
    margin-bottom:28px;
    font-size:14px;
    line-height:1.6;
  }
  
  /* Reviews Modal */
  .modal-box.reviews-modal{
    max-width:920px;
    padding:0;
  }
  .modal-box.reviews-modal .modal-close{
    top:12px;
    right:12px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    box-shadow:var(--shadow-sm);
  }
  .reviews-iframe{
    width:100%;
    height:80vh;
    border:none;
    border-radius:20px;
  }
  
  .form-group{
    margin-bottom:18px;
  }
  .form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
    font-size:14px;
    color:var(--text);
  }
  .form-group input,
  .form-group select{
    width:100%;
    padding:14px 16px;
    border:2px solid var(--border);
    border-radius:10px;
    font-size:15px;
    font-family:inherit;
    transition:all .2s;
    background:#fff;
  }
  .form-group input:focus,
  .form-group select:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(35,64,120,.08);
  }
  .form-submit{
    width:100%;
    padding:16px;
    background:linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color:#fff;
    border:none;
    border-radius:10px;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    transition:all .3s;
    margin-top:8px;
    box-shadow:0 4px 12px rgba(35,64,120,.2);
  }
  .form-submit:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(35,64,120,.3);
  }
  .form-submit:active{
    transform:translateY(0);
  }
  
  /* Demo Content */
  .demo-content{
    padding:60px 20px;
    max-width:800px;
    margin:0 auto;
    text-align:center;
  }
  .demo-content h1{
    color:var(--primary);
    margin-bottom:20px;
    font-weight:800;
  }
  .demo-list{
    text-align:left;
    max-width:520px;
    margin:28px auto;
    background:#fff;
    padding:24px 28px;
    border-radius:16px;
    box-shadow:var(--shadow-sm);
  }
  .demo-list li{
    line-height:2;
    color:var(--text);
  }
  .demo-list i{
    color:var(--primary);
    margin-right:8px;
    width:20px;
  }
  
  /* Responsive */
  @media (max-width: 968px){
    .header-row{
      height:56px;
      padding:0 16px;
    }
    .logo img{
      height:40px;
    }
    .nav-menu,
    .header-actions{
      display:none;
    }
    .hamburger{
      display:flex;
    }
    .bottom-nav{
      display:block;
    }
    body{
      padding-bottom:70px;
    }
    .modal-box{
      padding:28px 24px;
    }
    .modal h3{
      font-size:22px;
    }
  }


/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 700px;
  max-height: 700px;
  background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2071');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
}
/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 700px;
  max-height: 700px;
  background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2071');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  align-items: center;
}

/* ==================== HERO CONTENT (Sol %60) ==================== */
.hero-content {
  color: #fff;
}

.hero-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-subtitle strong {
  color: var(--accent);
  font-weight: 800;
}

.hero-features {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.hero-features i {
  color: var(--accent);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.hero-notice {
  background: rgba(255, 200, 87, 0.15);
  border: 1px solid rgba(255, 200, 87, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.hero-notice i {
  color: var(--accent);
  font-size: 16px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
}

.hero-rating span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stat i {
  color: var(--accent);
  font-size: 18px;
}

.hero-stat strong {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn i {
  font-size: 18px;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 200, 87, 0.4);
}

/* Campaign Button - YENİ */
.btn-campaign {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-campaign:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 200, 87, 0.5);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border: 2px solid var(--whatsapp);
}

.btn-whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.hero-quick-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 12px 0;
}

.hero-quick-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-quick-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}

.hero-quick-phone:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.hero-quick-phone i {
  color: var(--accent);
}

.hero-notice {
  background: rgba(255, 200, 87, 0.15);
  border: 1px solid rgba(255, 200, 87, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  backdrop-filter: blur(10px);
  line-height: 1.6;
}

.hero-notice i {
  color: var(--accent);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ==================== HERO FORM (Sağ %40) ==================== */
.hero-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.hero-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 420px;
  position: relative;
}

.hero-form-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}

.hero-form-badge i {
  font-size: 12px;
}

.hero-form-title {
  color: var(--primary);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
  text-align: center;
}

.hero-form-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-form .form-group {
  margin-bottom: 18px;
}

.hero-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-form label i {
  color: var(--primary);
  font-size: 14px;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s;
  background: #fff;
}

.hero-form input:focus,
.hero-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(35, 64, 120, 0.08);
}

.hero-form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  box-shadow: 0 6px 16px rgba(35, 64, 120, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(35, 64, 120, 0.4);
}

.hero-form-submit:active {
  transform: translateY(0);
}

.hero-form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.hero-form-trust i {
  color: #16a34a;
  font-size: 14px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
  .hero {
    min-height: auto;
    max-height: none;
    padding-top: 56px; /* Header height */
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0px 20px;
	padding-bottom:20px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-features li {
    font-size: 14px;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-form-wrapper {
    justify-content: center;
  }
  
  .hero-form-card {
    max-width: 100%;
    padding: 28px 24px;
  }
  
  .hero-form-title {
    font-size: 20px;
  }
}

/* ==================== ABOUT SECTION ==================== */
.about {
  padding: 100px 0;
  background: #fafbfc;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ==================== SOL TARAF - GÖRSELLER ==================== */
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  height: 600px;
}

.about-img {
  position: relative;
  border-radius: 50% 30% 40% 60%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Görsel Pozisyonları */
.about-img-1 {
  grid-column: 1;
  grid-row: 1;
  border-radius: 60% 40% 50% 50%;
  border: 3px solid var(--accent);
}

.about-img-2 {
  grid-column: 2;
  grid-row: 1;
  border-radius: 40% 60% 60% 40%;
  border: 3px dashed #e5e7eb;
  margin-top: 40px;
}

.about-img-3 {
  grid-column: 1;
  grid-row: 2;
  border-radius: 50% 50% 40% 60%;
  border: 3px dashed #e5e7eb;
  margin-top: -40px;
}

.about-img-4 {
  grid-column: 2;
  grid-row: 2;
  border-radius: 60% 40% 50% 50%;
  border: 3px solid var(--primary);
}

/* Dekoratif Elementler */
.about-deco {
  position: absolute;
  z-index: 1;
}

.about-deco-circle-1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3366 0%, #ff6699 100%);
  top: -20px;
  left: -20px;
  opacity: 0.8;
}

.about-deco-circle-2 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ffd700 100%);
  bottom: -30px;
  right: -30px;
  opacity: 0.7;
}

.about-deco-line {
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  top: 50%;
  left: -50px;
  transform: rotate(-45deg);
}

/* ==================== SAĞ TARAF - İÇERİK ==================== */
.about-content {
  padding: 20px 0;
}

.about-label {
    display: inline-block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgb(49 68 125);
    border-radius: 20px;
}

.about-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 24px;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
}

/* Özellikler Grid */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.about-feature:nth-child(2) .about-feature-icon {
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
}

.about-feature:nth-child(3) .about-feature-icon {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.about-feature:nth-child(4) .about-feature-icon {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.about-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* CTA Butonu */
.about-cta {
  margin-top: 20px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
  color: var(--primary);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(255, 200, 87, 0.3);
  transition: all 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 200, 87, 0.4);
}

.about-btn i:last-child {
  transition: transform 0.3s;
}

.about-btn:hover i:last-child {
  transform: translateX(5px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
  .about {
    padding: 60px 0;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-images {
    height: 500px;
    order: 2;
  }
  
  .about-content {
    order: 1;
  }
  
  .about-title {
    font-size: 28px;
  }
  
  .about-description {
    font-size: 15px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .about-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }
  
  .about-img-2,
  .about-img-3 {
    margin-top: 0;
  }
  
  .about-deco-circle-1,
  .about-deco-circle-2 {
    display: none;
  }
}

@media (max-width: 640px) {
  .about-images {
    height: 400px;
    gap: 12px;
  }
  
  .about-img {
    border-width: 2px;
  }
  
  .about-feature {
    padding: 16px;
  }
  
  .about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 20px;
  }
  
  .about-feature-title {
    font-size: 14px;
  }
}

/* ==================== INSTRUCTORS SECTION ==================== */
.instructors {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
  position: relative;
  overflow: hidden;
}

.instructors-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== SECTION HEADER ==================== */
.instructors-header {
  text-align: center;
  margin-bottom: 60px;
}

.instructors-label {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(35, 64, 120, 0.1);
  border-radius: 20px;
}

.instructors-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.instructors-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== CAROUSEL WRAPPER ==================== */
.instructors-carousel-wrapper {
  position: relative;
  margin-bottom: 50px;
}

.instructors-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.instructors-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

/* ==================== INSTRUCTOR CARD ==================== */
.instructor-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-width: 280px;
}

.instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Instructor Image */
.instructor-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.instructor-card:hover .instructor-image img {
  transform: scale(1.08);
}

/* TELC Badge */
.instructor-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  display:none;
}

.instructor-badge i {
  font-size: 11px;
}

/* Instructor Info */
.instructor-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.instructor-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.instructor-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.instructor-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.instructor-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 10px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.instructor-details-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(4px);
}

.instructor-details-btn i {
  transition: transform 0.3s;
}

.instructor-details-btn:hover i {
  transform: translateX(4px);
}

/* ==================== CTA BUTTON ==================== */
.instructors-cta {
  text-align: center;
  margin-top: 40px;
}

.instructors-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(35, 64, 120, 0.3);
  transition: all 0.3s;
}

.instructors-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(35, 64, 120, 0.4);
}

.instructors-btn i:last-child {
  transition: transform 0.3s;
}

.instructors-btn:hover i:last-child {
  transform: translateX(5px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .instructors-carousel {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 968px) {
  .instructors {
    padding: 60px 0;
  }
  
  .instructors-header {
    margin-bottom: 40px;
  }
  
  .instructors-title {
    font-size: 32px;
  }
  
  .instructors-subtitle {
    font-size: 16px;
  }
  
  .instructors-carousel {
    display: flex;
    grid-template-columns: none;
    gap: 20px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    padding: 10px 5px;
    -webkit-overflow-scrolling: touch;
  }
  
  .instructor-card {
    scroll-snap-align: center;
    min-width: 85%;
    max-width: 85%;
    flex-shrink: 0;
  }
  
  .carousel-btn {
    display: none;
  }
  
  .instructors-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .instructor-image {
    height: 280px;
  }
  
  .instructor-info {
    padding: 20px;
  }
  
  .instructor-name {
    font-size: 20px;
  }
  
  .instructor-description {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
  
  .instructor-details-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== INSTRUCTOR DETAIL MODAL ==================== */
.instructor-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.instructor-modal.open {
  display: flex;
}

.instructor-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s;
}

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

.instructor-modal-content {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@keyframes modalSlideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.instructor-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.instructor-modal-close:hover {
  background: var(--border);
  color: var(--text);
  transform: rotate(90deg);
}

.instructor-modal-header {
  display: flex;
  gap: 24px;
  padding: 32px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.instructor-modal-header img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  flex-shrink: 0;
}

.instructor-modal-header h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.instructor-modal-header p {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
   display:none;
}

.modal-badge i {
  font-size: 11px;
}

.instructor-modal-body {
  padding: 32px;
}

.instructor-modal-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}

.instructor-modal-body p:last-child {
  margin-bottom: 0;
}

/* Modal Responsive */
@media (max-width: 640px) {
  .instructor-modal {
    padding: 10px;
  }
  
  .instructor-modal-content {
    max-height: 95vh;
    border-radius: 16px;
  }
  
  .instructor-modal-header {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  
  .instructor-modal-header img {
    width: 80px;
    height: 80px;
  }
  
  .instructor-modal-header h3 {
    font-size: 22px;
  }
  
  .instructor-modal-header p {
    font-size: 14px;
  }
  
  .instructor-modal-body {
    padding: 24px 20px;
  }
  
  .instructor-modal-body p {
    font-size: 14px;
  }
  
  .instructor-modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ==================== VIDEOS SECTION ==================== */
.videos-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.videos-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== SECTION HEADER ==================== */
.videos-header {
  text-align: center;
  margin-bottom: 60px;
}

.videos-label {
  display: inline-block;
  color: #ff0000;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(255, 0, 0, 0.1);
  border-radius: 20px;
}

.videos-label i {
  margin-right: 4px;
}

.videos-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.videos-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== CAROUSEL WRAPPER ==================== */
.videos-carousel-wrapper {
  position: relative;
  margin-bottom: 50px;
}

.videos-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.videos-carousel::-webkit-scrollbar {
  display: none;
}

/* Carousel Buttons */
.videos-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.videos-carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.videos-carousel-prev {
  left: -24px;
}

.videos-carousel-next {
  right: -24px;
}

/* ==================== VIDEO CARD ==================== */
.video-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Video Thumbnail */
.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.08);
}

/* Play Icon Overlay */
.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  padding-left: 4px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.video-card:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.15);
  background: rgba(255, 0, 0, 1);
}

/* Video Duration Badge */
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

/* Video Info */
.video-info {
  padding: 16px;
  background: #fff;
}

.video-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* ==================== VIDEO MODAL ==================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.open {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s;
}

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

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@keyframes modalZoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-modal-close:hover {
  background: #fff;
  transform: rotate(90deg);
}

.video-modal-player {
  width: 100%;
  height: 100%;
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Video Modal Navigation */
.video-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-modal-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.video-modal-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.video-modal-nav:disabled:hover {
  transform: translateY(-50%);
}

.video-modal-prev {
  left: -70px;
}

.video-modal-next {
  right: -70px;
}

/* ==================== CTA BUTTON ==================== */
.videos-cta {
  text-align: center;
  margin-top: 40px;
}

.videos-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(255, 0, 0, 0.3);
  transition: all 0.3s;
}

.videos-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 0, 0, 0.4);
}

.videos-btn i:last-child {
  transition: transform 0.3s;
}

.videos-btn:hover i:last-child {
  transform: translateX(5px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .videos-carousel {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 968px) {
  .videos-section {
    padding: 60px 0;
  }

  .videos-header {
    margin-bottom: 40px;
  }

  .videos-title {
    font-size: 32px;
  }

  .videos-subtitle {
    font-size: 16px;
  }

  .videos-carousel {
    gap: 16px;
    padding: 10px 5px;
  }

  .video-card {
    min-width: 280px;
    max-width: 280px;
  }

  .videos-carousel-btn {
    display: none;
  }

  .videos-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
  }

  .video-modal-content {
    max-width: 95%;
  }

  .video-modal-close {
    top: -45px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .video-modal-prev,
  .video-modal-next {
    display: none;
  }
}

@media (max-width: 640px) {
  .video-card {
    min-width: 75%;
    max-width: 75%;
  }

  .video-play-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .video-info {
    padding: 12px;
  }

  .video-title {
    font-size: 14px;
  }

  .video-modal {
    padding: 10px;
  }

  .video-modal-content {
    max-width: 100%;
    border-radius: 8px;
  }

  .video-modal-close {
    top: -40px;
  }
}

/* Video Modal Navigation Buttons */
.video-modal-close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-modal-close-btn:hover {
  background: rgba(255, 0, 0, 0.8);
  transform: rotate(90deg);
  border-color: rgba(255, 255, 255, 0.5);
}

.video-modal-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-modal-prev-btn {
  left: 20px;
}

.video-modal-next-btn {
  right: 20px;
}

.video-modal-nav-btn:hover {
  background: rgba(0, 123, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

/* Mobil görünüm */
@media (max-width: 968px) {
  .video-modal-close-btn {
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .video-modal-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .video-modal-prev-btn {
    left: 10px;
  }
  
  .video-modal-next-btn {
    right: 10px;
  }
}

/* Videos Carousel Wrapper */
.videos-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

/* Videos Carousel Butonları */
.videos-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.videos-carousel-btn:hover {
  background: rgba(220, 53, 69, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.videos-carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.videos-carousel-prev {
  left: 0;
}

.videos-carousel-next {
  right: 0;
}

/* Carousel kendisi */
.videos-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
}

.videos-carousel::-webkit-scrollbar {
  display: none;
}

/* Mobil görünüm */
@media (max-width: 968px) {
  .videos-carousel-wrapper {
    padding: 0 50px;
  }
  
  .videos-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .videos-carousel-prev {
    left: 5px;
  }
  
  .videos-carousel-next {
    right: 5px;
  }
}
	
    /* ==================== REELS SECTION ==================== */
    .reels-section {
      padding: 100px 0;
      background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
      position: relative;
      overflow: hidden;
    }

    .reels-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ==================== SECTION HEADER ==================== */
    .reels-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .reels-label {
      display: inline-block;
      background: var(--instagram);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 16px;
      padding: 6px 16px;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(188, 24, 136, 0.3);
    }

    .reels-title {
      font-size: 42px;
      font-weight: 900;
      color: var(--primary);
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .reels-subtitle {
      font-size: 18px;
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ==================== CAROUSEL WRAPPER ==================== */
    .reels-carousel-wrapper {
      position: relative;
      margin-bottom: 50px;
    }

    .reels-carousel {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 10px 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
      -webkit-overflow-scrolling: touch;
    }

    .reels-carousel::-webkit-scrollbar {
      display: none;
    }

    /* Carousel Buttons */
    .reels-carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid var(--border);
      color: var(--primary);
      font-size: 18px;
      cursor: pointer;
      transition: all 0.3s;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .reels-carousel-btn:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
      transform: translateY(-50%) scale(1.1);
    }

    .reels-carousel-prev {
      left: -24px;
    }

    .reels-carousel-next {
      right: -24px;
    }

    /* ==================== REELS CARD ==================== */
    .reels-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      position: relative;
      min-width: 220px;
      max-width: 220px;
      aspect-ratio: 9/16;
      flex-shrink: 0;
    }

    .reels-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .reels-thumbnail {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }

    .reels-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }

    .reels-card:hover .reels-thumbnail img {
      transform: scale(1.08);
    }

    /* Play Icon Overlay */
    .reels-play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: var(--instagram);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 24px;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(188, 24, 136, 0.4);
      pointer-events: none;
    }

    .reels-card:hover .reels-play-icon {
      transform: translate(-50%, -50%) scale(1.15);
    }

    /* Reels Badge */
    .reels-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 6px;
      backdrop-filter: blur(8px);
      pointer-events: none;
    }

    .reels-badge i {
      background: var(--instagram);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ==================== REELS MODAL ==================== */
    .reels-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(8px);
    }

    .reels-modal.open {
      display: flex;
    }

    .reels-modal-content {
      position: relative;
      width: 100%;
      max-width: 500px;
      height: 90vh;
      max-height: 900px;
      background: #000;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      animation: modalZoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes modalZoomIn {
      from {
        transform: scale(0.9);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .reels-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border: none;
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      z-index: 10;
    }

    .reels-modal-close:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: rotate(90deg);
    }

    .reels-video-container {
      position: relative;
      width: 100%;
      height: 100%;
      overflow-y: auto;
      scroll-snap-type: y mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .reels-video-container::-webkit-scrollbar {
      display: none;
    }

    .reels-video-wrapper {
      width: 100%;
      height: 100%;
      scroll-snap-align: start;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background: #000;
    }

    .reels-video-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Navigation Arrows */
    .reels-nav-arrow {
      position: fixed;
      right: 16px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border: none;
      color: #fff;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      z-index: 10;
    }

    .reels-nav-arrow:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.1);
    }

    .reels-nav-up {
      top: 50%;
      margin-top: -60px;
    }

    .reels-nav-down {
      top: 50%;
      margin-top: 20px;
    }

    .reels-nav-arrow:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    .reels-nav-arrow:disabled:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1);
    }

    /* ==================== CTA BUTTON ==================== */
    .reels-cta {
      text-align: center;
      margin-top: 40px;
    }

    .reels-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 36px;
      background: var(--instagram);
      color: #fff;
      font-weight: 800;
      font-size: 16px;
      text-decoration: none;
      border-radius: 12px;
      box-shadow: 0 6px 24px rgba(188, 24, 136, 0.3);
      transition: all 0.3s;
      border: none;
      cursor: pointer;
    }

    .reels-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(188, 24, 136, 0.4);
    }

    .reels-btn i:last-child {
      transition: transform 0.3s;
    }

    .reels-btn:hover i:last-child {
      transform: translateX(5px);
    }

    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 1200px) {
      .reels-card {
        min-width: 200px;
        max-width: 200px;
      }
    }

    @media (max-width: 968px) {
      .reels-section {
        padding: 60px 0;
      }

      .reels-header {
        margin-bottom: 40px;
      }

      .reels-title {
        font-size: 32px;
      }

      .reels-subtitle {
        font-size: 16px;
      }

      .reels-carousel {
        gap: 16px;
        padding: 10px 5px;
      }

      .reels-card {
        min-width: 45%;
        max-width: 45%;
      }

      .reels-carousel-btn {
        display: none;
      }

      .reels-btn {
        width: 100%;
        justify-content: center;
        font-size: 15px;
      }

      .reels-modal-content {
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
      }
    }

    @media (max-width: 640px) {
      .reels-card {
        min-width: 60%;
        max-width: 60%;
      }

      .reels-play-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }
    }
	
	/* ==================== GOOGLE REVIEWS SECTION ==================== */

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section */
.google-reviews-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ==================== SECTION HEADER ==================== */

.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.reviews-label i {
  font-size: 18px;
}

.reviews-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.reviews-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== LOADING SPINNER ==================== */

.loading-spinner {
  text-align: center;
  padding: 60px;
  color: white;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==================== GOOGLE SUMMARY ==================== */

.google-summary {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.summary-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.google-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
  flex-shrink: 0;
}

.summary-info h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.summary-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.rating-number {
  font-size: 32px;
  font-weight: 700;
  color: #FFB900;
}

.stars {
  font-size: 24px;
  color: #FFB900;
}

.summary-text {
  color: #666;
  font-size: 14px;
}

.summary-right {
  text-align: right;
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4285F4;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.review-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
  background: #3367D6;
}

/* ==================== REVIEWS CAROUSEL ==================== */

.reviews-carousel-wrapper {
  position: relative;
  margin-bottom: 40px;
  padding: 0;
  max-width: 100%;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 30px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}
/* ==================== REVIEW CARD ==================== */

.review-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: visible;
  scroll-snap-align: center;
  border: 1px solid rgba(102, 126, 234, 0.1);
  margin: 0 10px;
}

.review-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: -15px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  color: white;
  font-size: 28px;
  padding-top: 8px;
  padding-left: 2px;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.review-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #667eea;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.review-author-info {
  flex: 1;
  padding-top: 5px;
}

.review-author-info h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 700;
}

.review-stars {
  color: #FFB900;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 3px;
}

.review-date {
  color: #999;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-date i {
  font-size: 12px;
}

.review-text {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4285F4;
  font-weight: 600;
  background: rgba(66, 133, 244, 0.1);
  padding: 10px 18px;
  border-radius: 50px;
}

.google-badge i {
  font-size: 16px;
}

/* ==================== CAROUSEL DOTS ==================== */

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: white;
  width: 30px;
  border-radius: 5px;
}

/* ==================== ERROR MESSAGE ==================== */

.error-message {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: #dc3545;
}

.error-message i {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.error-message h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.error-message p {
  font-size: 16px;
  color: #666;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media (max-width: 968px) {
  .google-reviews-section {
    padding: 60px 15px;
  }

  .reviews-title {
    font-size: 32px;
  }

  .reviews-subtitle {
    font-size: 16px;
  }

  .google-summary {
    padding: 30px;
    flex-direction: column;
    text-align: center;
  }

  .summary-left {
    flex-direction: column;
    text-align: center;
  }

  .summary-right {
    text-align: center;
  }

 .review-card {
    min-width: calc(100% - 30px);
    max-width: calc(100% - 30px);
    padding: 35px 25px;
    margin: 0 15px;
  }

  .review-card::before {
    width: 50px;
    height: 50px;
    font-size: 24px;
    right: 20px;
  }

  .review-avatar {
    width: 70px;
    height: 70px;
  }

  .review-author-info h4 {
    font-size: 18px;
  }

  .review-stars {
    font-size: 16px;
  }

  .review-text {
    font-size: 15px;
  }

  .carousel-dots {
    margin-top: 25px;
  }
  
  .summary-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    text-align: center;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    flex-direction: row;
}
}

/* Mobile */
@media (max-width: 480px) {
  .google-reviews-section {
    padding: 50px 10px;
  }

  .reviews-title {
    font-size: 28px;
  }

  .reviews-subtitle {
    font-size: 15px;
  }

  .google-summary {
    padding: 25px 20px;
  }

  .google-logo {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .summary-info h3 {
    font-size: 20px;
  }

  .rating-number {
    font-size: 28px;
  }

  .stars {
    font-size: 20px;
  }

  .review-link {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .summary-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    text-align: center;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    flex-direction: row;
}

  .review-card {
    min-width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    padding: 30px 20px;
    margin: 0 10px;
  }

  .review-card::before {
    width: 45px;
    height: 45px;
    font-size: 20px;
    right: 15px;
    top: -12px;
  }

  .review-header {
    gap: 15px;
  }

  .review-avatar {
    width: 60px;
    height: 60px;
    border: 3px solid #667eea;
  }

  .review-author-info h4 {
    font-size: 16px;
  }

  .review-stars {
    font-size: 15px;
  }

  .review-date {
    font-size: 13px;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .google-badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .carousel-dots {
    margin-top: 20px;
    gap: 8px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-dot.active {
    width: 24px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .review-card {
    padding: 25px 15px;
  }

  .review-text {
    font-size: 13px;
  }
}

/* ==================== TAB SECTION ==================== */

.tab-section {
  padding: 80px 20px;
  background: #f8f9fa;
  position: relative;
}

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

/* ==================== SECTION HEADER ==================== */

.tab-header {
  text-align: center;
  margin-bottom: 50px;
}

.tab-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tab-label i {
  font-size: 18px;
}

.tab-title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.tab-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== TAB NAVIGATION ==================== */

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  color: #666;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-nav-btn i {
  font-size: 20px;
}

.tab-nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
  color: #667eea;
}

.tab-nav-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

/* ==================== TAB CONTENT ==================== */

.tab-content-wrapper {
  position: relative;
  min-height: 500px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== TAB GRID ==================== */

.tab-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ==================== TAB TEXT (Sol %60) ==================== */

.tab-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tab-text > p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* ==================== FEATURE LIST ==================== */

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-item i {
  font-size: 24px;
  color: #667eea;
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* ==================== TAB CTA BUTTON ==================== */

.tab-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.tab-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.tab-cta-btn i {
  font-size: 18px;
}

/* ==================== TAB VIDEO (Sağ %40) ==================== */

.tab-video {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-infosu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
}

.video-info i {
  font-size: 18px;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media (max-width: 968px) {
  .tab-section {
    padding: 60px 15px;
  }

  .tab-title {
    font-size: 32px;
  }

  .tab-subtitle {
    font-size: 16px;
  }

  .tab-nav {
    gap: 10px;
  }

  .tab-nav-btn {
    padding: 12px 25px;
    font-size: 15px;
  }

  .tab-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 30px;
  }

  .tab-text h3 {
    font-size: 28px;
  }

  .tab-video {
    order: -1; /* Video önce gelsin mobilde */
  }
}

/* Mobile */
@media (max-width: 480px) {
  .tab-section {
    padding: 50px 10px;
  }

  .tab-header {
    margin-bottom: 30px;
  }

  .tab-title {
    font-size: 28px;
  }

  .tab-subtitle {
    font-size: 15px;
  }

  .tab-nav {
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
  }

  .tab-nav-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
  }

  .tab-grid {
    padding: 30px 20px;
    gap: 25px;
  }

  .tab-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .tab-text > p {
    font-size: 15px;
  }

  .feature-list {
    gap: 15px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-item i {
    font-size: 20px;
  }

  .feature-item h4 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 13px;
  }

  .tab-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 25px;
    font-size: 15px;
  }

  .video-info {
    font-size: 13px;
    padding: 10px 15px;
  }
}

/* ==================== FOOTER SECTION ==================== */

.footer-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 60px 20px 0;
  position: relative;
}

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

/* ==================== FOOTER TOP ==================== */

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== FOOTER ABOUT ==================== */

.footer-about {
  padding-right: 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #bdc3c7;
  margin-bottom: 25px;
}

/* ==================== SOCIAL MEDIA ==================== */

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link.whatsapp {
  background: #25D366;
}

.social-link.whatsapp:hover {
  background: #128C7E;
  transform: translateY(-3px);
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(188, 24, 136, 0.4);
}

.social-link.youtube {
  background: #FF0000;
}

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

/* ==================== FOOTER COLUMNS ==================== */

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* ==================== FOOTER LINKS ==================== */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #667eea;
  font-size: 12px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 20px;
}

.footer-links a:hover::before {
  left: 5px;
}

/* ==================== FOOTER BOTTOM ==================== */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-left p {
  font-size: 14px;
  color: #95a5a6;
  margin: 0;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal li {
  position: relative;
}

.footer-legal li:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -12px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-legal a {
  color: #95a5a6;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media (max-width: 968px) {
  .footer-section {
    padding: 50px 15px 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-about {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-title::after {
    left: 0;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .footer-section {
    padding: 40px 10px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-about {
    text-align: center;
  }

  .footer-logo img {
    max-width: 180px;
  }

  .footer-desc {
    font-size: 13px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    padding-left: 0;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .footer-legal li:not(:last-child)::after {
    display: none;
  }
}

/* ==================== CAMPAIGN SECTION ==================== */
.campaign-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.campaign-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.campaign-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==================== SECTION HEADER ==================== */
.campaign-header {
  text-align: center;
  margin-bottom: 60px;
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.campaign-badge i {
  font-size: 16px;
}

.campaign-title {
  font-size: 42px;
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
  line-height: 1.3;
}

.gradient-text {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.campaign-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* ==================== CAMPAIGNS GRID ==================== */
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* Campaign Card */
.campaign-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.campaign-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  border-color: #FFD700;
}

.campaign-card.featured {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  grid-column: span 4;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.campaign-card.featured:hover {
  border-color: white;
}

.campaign-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #667eea;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.campaign-card:hover .campaign-card-icon {
  transform: scale(1.1) rotate(10deg);
}

.campaign-card.featured .campaign-card-icon {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  width: 80px;
  height: 80px;
  font-size: 36px;
  margin: 0 auto;
}

.campaign-card-content {
  flex: 1;
}

.campaign-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.campaign-card.featured .campaign-card-title {
  color: white;
  font-size: 32px;
  margin-bottom: 4px;
}

.campaign-card-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.campaign-card.featured .campaign-card-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 8px;
}

/* Price */
.campaign-card-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.campaign-card.featured .campaign-card-price {
  justify-content: center;
}

.price-old {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
}

.price-new {
  font-size: 36px;
  font-weight: 900;
  color: white;
}

.campaign-card-discount {
  display: flex;
  justify-content: center;
}

.campaign-card.featured .campaign-card-discount {
  justify-content: center;
}

.discount-percent {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
}

.discount-tag {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
}

/* ==================== EXTRA BENEFITS ==================== */
.campaign-benefits {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.benefits-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 30px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: white;
  font-weight: 600;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

.benefit-item i {
  color: #FFD700;
  font-size: 20px;
  min-width: 20px;
}

/* ==================== CTA ==================== */
.campaign-cta {
  text-align: center;
}

.campaign-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #667eea;
  padding: 20px 48px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.campaign-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background: #FFD700;
  color: white;
}

.campaign-cta-btn i {
  font-size: 20px;
}

.campaign-timer {
  margin-top: 20px;
  font-size: 14px;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(220, 53, 69, 0.2);
  backdrop-filter: blur(10px);
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 50px;
}

.campaign-timer i {
  font-size: 16px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .campaigns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .campaign-card.featured {
    grid-column: span 2;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 968px) {
  .campaign-section {
    padding: 60px 0;
  }
  
  .campaign-header {
    margin-bottom: 40px;
  }
  
  .campaign-title {
    font-size: 32px;
  }
  
  .campaign-subtitle {
    font-size: 16px;
  }
  
  .campaigns-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .campaign-card.featured {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }
  
  .campaign-card.featured .campaign-card-icon {
    margin: 0 auto 20px;
  }
  
  .campaign-card.featured .campaign-card-price {
    justify-content: center;
  }
  
  .campaign-card.featured .campaign-card-discount {
    justify-content: center;
  }
  
  .campaign-benefits {
    padding: 30px 24px;
  }
  
  .benefits-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .campaign-section {
    padding: 40px 0;
  }
  
  .campaign-title {
    font-size: 26px;
  }
  
  .campaign-subtitle {
    font-size: 15px;
  }
  
  .campaign-card {
    padding: 24px;
  }
  
  .campaign-card-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .campaign-card-title {
    font-size: 18px;
  }
  
  .campaign-card.featured .campaign-card-title {
    font-size: 22px;
  }
  
  .price-new {
    font-size: 28px;
  }
  
  .campaign-benefits {
    padding: 24px 20px;
  }
  
  .benefit-item {
    font-size: 14px;
    padding: 12px;
  }
  
  .campaign-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 16px;
  }
  
  .campaign-timer {
    font-size: 13px;
  }
}

/* ==================== EXAM SECTION ==================== */
.exam-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.exam-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== SECTION HEADER ==================== */
.exam-header {
  text-align: center;
  margin-bottom: 60px;
}

.exam-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(255, 200, 87, 0.1);
  border-radius: 20px;
}

.exam-label i {
  font-size: 16px;
}

.exam-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 20px;
}

.exam-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.exam-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== EXAM LIST ==================== */
.exam-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 80px;
}

.exam-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: #fafbfc;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.exam-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-left-color: var(--accent);
}

.exam-item:nth-child(2) {
  border-left-color: var(--accent);
}

.exam-item:nth-child(2):hover {
  border-left-color: var(--primary);
}

.exam-item:nth-child(3) {
  border-left-color: #16a34a;
}

.exam-item:nth-child(3):hover {
  border-left-color: var(--accent);
}

.exam-item:nth-child(4) {
  border-left-color: #dc2626;
}

.exam-item:nth-child(4):hover {
  border-left-color: var(--primary);
}

.exam-item:nth-child(5) {
  border-left-color: #8b5cf6;
}

.exam-item:nth-child(5):hover {
  border-left-color: var(--accent);
}

.exam-number {
  min-width: 56px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.exam-item:nth-child(2) .exam-number {
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
}

.exam-item:nth-child(3) .exam-number {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.exam-item:nth-child(4) .exam-number {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.exam-item:nth-child(5) .exam-number {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.exam-content {
  flex: 1;
}

.exam-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.exam-details {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

/* ==================== EXAM LOGOS ==================== */
.exam-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding: 40px 0;
}

.exam-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.exam-logo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.exam-logo-box {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fafbfc;
  border-radius: 12px;
}

.exam-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.exam-logo-item:hover .exam-logo-box img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.exam-logo-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .exam-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 968px) {
  .exam-section {
    padding: 60px 0;
  }
  
  .exam-header {
    margin-bottom: 40px;
  }
  
  .exam-title {
    font-size: 32px;
  }
  
  .exam-subtitle {
    font-size: 16px;
  }
  
  .exam-description {
    font-size: 15px;
  }
  
  .exam-list {
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .exam-item {
    padding: 24px;
    gap: 16px;
  }
  
  .exam-number {
    min-width: 48px;
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .exam-name {
    font-size: 18px;
  }
  
  .exam-details {
    font-size: 15px;
  }
  
  .exam-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .exam-logo-box {
    height: 100px;
  }
}

@media (max-width: 640px) {
  .exam-section {
    padding: 40px 0;
  }
  
  .exam-title {
    font-size: 26px;
  }
  
  .exam-subtitle {
    font-size: 15px;
  }
  
  .exam-item {
    flex-direction: column;
    padding: 20px;
    gap: 12px;
  }
  
  .exam-number {
    min-width: 44px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  .exam-name {
    font-size: 16px;
  }
  
  .exam-details {
    font-size: 14px;
  }
  
  .exam-logos {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .exam-logo-item {
    padding: 20px;
  }
  
  .exam-logo-box {
    height: 80px;
  }
  
  .exam-logo-title {
    font-size: 12px;
  }
}