/* ============================================
   VERIODA - PREMIUM WHMCS THEME V4
   Renk Paleti: Turuncu (#FF6B00) + Koyu Tema
   ============================================ */

/* --- CSS DEĞİŞKENLERİ --- */
:root {
    --primary: #FF6B00;
    --primary-dark: #E05A00;
    --primary-light: #FF8533;
    --primary-glow: rgba(255, 107, 0, 0.3);
    
    --bg-primary: #0A0A0A;
    --bg-secondary: #141414;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-muted: #999999;
    --text-dark: #666666;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 107, 0, 0.2);
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.8);
    --shadow-primary: 0 8px 30px rgba(255, 107, 0, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- GENEL RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- SCROLL BAR --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* --- TOP BAR --- */
.top-bar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1000;
}

.top-bar .promo-text {
    color: var(--primary);
    font-weight: 700;
    background: rgba(255, 107, 0, 0.1);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.top-bar .promo-text i {
    animation: pulse 2s infinite;
}

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

.top-bar .contact-info {
    color: var(--text-muted);
}

.top-bar .contact-info i {
    color: var(--primary);
    margin-right: 6px;
}

.top-bar .contact-info span {
    margin: 0 12px;
}

.top-bar .contact-info a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

.top-bar .selector-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.top-bar .selector-group select:hover {
    border-color: var(--primary);
}

.top-bar .selector-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* --- MEGA MENÜ (YENİ TASARIM) --- */
.main-nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    padding: 12px 0;
}

.navbar-brand img {
    max-height: 45px;
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Mega Menü - Ana Linkler */
.mega-menu .nav-item {
    position: relative;
}

.mega-menu .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 20px 18px !important;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu .nav-link i {
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition);
}

.mega-menu .nav-link:hover i {
    transform: scale(1.1);
}

.mega-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: var(--radius-full);
}

.mega-menu .nav-link:hover::after,
.mega-menu .nav-link.active::after {
    width: 60%;
}

.mega-menu .nav-link:hover {
    color: var(--primary) !important;
}

.mega-menu .nav-link .dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: var(--transition);
}

.mega-menu .nav-item.dropdown.show .nav-link .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mega Dropdown - Ana Kapsayıcı */
.mega-dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    min-width: 800px !important;
    width: auto !important;
    max-width: 90vw !important;
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    z-index: 1000;
    margin-top: 0;
    pointer-events: none;
}

/* Dropdown açıkken */
.mega-menu .nav-item.dropdown.show .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto;
}

/* Dropdown üst çizgi efekti */
.mega-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 var(--radius-full) var(--radius-full);
}

/* Dropdown içeriği */
.mega-dropdown-menu .container-fluid {
    padding: 0;
}

.mega-dropdown-menu .dropdown-header {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-dropdown-menu .dropdown-header i {
    font-size: 1rem;
}

.mega-dropdown-menu .dropdown-item {
    color: var(--text-secondary);
    padding: 8px 12px;
    transition: var(--transition);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    margin: 2px 0;
}

.mega-dropdown-menu .dropdown-item i {
    color: var(--primary);
    font-size: 0.8rem;
    width: 20px;
    text-align: center;
    opacity: 0.6;
    transition: var(--transition);
}

.mega-dropdown-menu .dropdown-item:hover {
    color: var(--primary);
    background: rgba(255, 107, 0, 0.05);
    padding-left: 18px;
}

.mega-dropdown-menu .dropdown-item:hover i {
    opacity: 1;
    transform: translateX(4px);
}

.mega-dropdown-menu .dropdown-item .item-badge {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-left: auto;
}

/* Dropdown Grid */
.mega-dropdown-menu .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mega-dropdown-menu .menu-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.mega-dropdown-menu .menu-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.mega-dropdown-menu .menu-col {
    padding: 0;
}

/* Giriş Butonu */
.btn-primary-custom {
    background: var(--primary);
    color: #FFF !important;
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    color: #FFF !important;
}

.btn-primary-custom i {
    font-size: 1.1rem;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-animation .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    transition: all 0.3s ease-out;
    will-change: transform;
}

.hero-bg-animation .orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 0, 0.12);
    top: -100px;
    right: -100px;
    animation: floatOrb 8s ease-in-out infinite alternate;
}

.hero-bg-animation .orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 0, 0.08);
    bottom: -50px;
    left: -50px;
    animation: floatOrb2 10s ease-in-out infinite alternate;
}

.hero-bg-animation .orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 0, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatOrb3 12s ease-in-out infinite alternate;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, 50px) scale(1.1); }
}

@keyframes floatOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -30px) scale(1.2); }
}

@keyframes floatOrb3 {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(255, 107, 0, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 30px;
}

.domain-search-wrapper {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 6px;
    max-width: 650px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.domain-search-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.domain-search-wrapper input {
    background: transparent;
    border: none;
    padding: 16px 24px;
    color: var(--text-primary);
    font-size: 1.05rem;
    flex: 1;
    outline: none;
}

.domain-search-wrapper input::placeholder {
    color: var(--text-muted);
}

.domain-search-wrapper .search-btn {
    background: var(--primary);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    color: #FFF;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.domain-search-wrapper .search-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.domain-search-wrapper .search-btn i {
    margin-right: 8px;
}

.popular-extensions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.extension-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
}

.extension-badge:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.extension-badge strong {
    color: var(--primary);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.hero-stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- TECH STACK --- */
.tech-stack {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.tech-stack .tech-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.tech-stack .tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
}

.tech-stack .tech-item:hover {
    color: var(--text-primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.tech-stack .tech-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* --- PRICING SECTION --- */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.section-header .section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

.price-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.price-toggle-wrapper .toggle-label {
    color: var(--text-muted);
    font-weight: 500;
}

.price-toggle-wrapper .toggle-label.active {
    color: var(--text-primary);
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    border: 2px solid var(--border-color);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.toggle-switch.active {
    border-color: var(--primary);
}

.toggle-switch .toggle-dot {
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: var(--transition);
}

.toggle-switch.active .toggle-dot {
    left: 32px;
}

.toggle-savings {
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.pricing-tabs .tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.pricing-tabs .tab-btn:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.pricing-tabs .tab-btn.active {
    background: var(--primary);
    color: #FFF;
    border-color: var(--primary);
}

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

.pricing-grid.active {
    display: grid;
}

.price-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.price-card:hover::before {
    transform: scaleX(1);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.price-card.featured::before {
    transform: scaleX(1);
}

.price-card .popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #FFF;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-card .card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.price-card .plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.price-card .plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.price-card .price .currency {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.price-card .price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-card .price .yearly {
    display: none;
}

.price-card.show-yearly .price .monthly {
    display: none;
}

.price-card.show-yearly .price .yearly {
    display: inline;
}

.price-card .features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.price-card .features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}

.price-card .features li:last-child {
    border-bottom: none;
}

.price-card .features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.price-card .btn-order {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
}

.price-card .btn-order:hover {
    background: var(--primary);
    color: #FFF;
    transform: scale(1.02);
}

.price-card.featured .btn-order {
    background: var(--primary);
    color: #FFF;
}

.price-card.featured .btn-order:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* --- WHY VERIODA --- */
.why-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

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

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #FFF;
    transform: rotateY(180deg) scale(1.1);
}

.feature-card .feature-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 107, 0, 0.05);
    line-height: 1;
}

.feature-card h4 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* --- COMPARISON TABLE --- */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.comparison-table-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--bg-secondary);
}

.comparison-table th {
    padding: 18px 20px;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th .brand-highlight {
    color: var(--primary);
}

.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table .check {
    color: #4CAF50;
    font-size: 1.2rem;
}

.comparison-table .times {
    color: #f44336;
    font-size: 1.2rem;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 15px;
}

.testimonial-card .testimonial-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card .testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-card .testimonial-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 30px;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .testimonial-author .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFF;
}

.testimonial-card .testimonial-author .author-info h5 {
    color: var(--text-primary);
    margin: 0;
}

.testimonial-card .testimonial-author .author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-nav .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-nav .nav-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.testimonial-nav .nav-dot:hover {
    border-color: var(--primary);
}

/* --- CTA BANNER --- */
.cta-section {
    padding: 60px 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-banner h2 {
    color: #FFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-banner .btn-cta {
    background: #FFF;
    color: var(--primary);
    padding: 14px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-banner .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer .footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 6px 0;
}

.footer .footer-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer .footer-link i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 0.8rem;
}

.footer .location-badge {
    display: inline-block;
    background: var(--bg-card);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin: 3px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

.footer .location-badge i {
    color: var(--primary);
    margin-right: 6px;
}

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

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.footer .social-links a:hover {
    background: var(--primary);
    color: #FFF;
    transform: translateY(-3px);
}

.footer .footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer .footer-bottom .copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer .footer-bottom .legal-links {
    display: flex;
    gap: 20px;
}

.footer .footer-bottom .legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .mega-dropdown-menu {
        min-width: 600px !important;
    }
    
    .mega-dropdown-menu .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    /* Mobil Menü */
    .mega-dropdown-menu {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        min-width: 100% !important;
        width: 100% !important;
        padding: 1rem;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1 !important;
        visibility: visible !important;
        border-radius: 0;
        backdrop-filter: none;
        pointer-events: auto !important;
    }
    
    .mega-dropdown-menu::before {
        display: none;
    }
    
    .mega-dropdown-menu .container-fluid {
        padding: 0;
    }
    
    .mega-dropdown-menu .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mega-dropdown-menu .menu-grid.two-col,
    .mega-dropdown-menu .menu-grid.four-col {
        grid-template-columns: 1fr;
    }
    
    .main-nav .navbar-collapse {
        background: var(--bg-primary);
        padding: 20px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
        margin-top: 10px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .mega-menu .nav-link {
        padding: 12px 0 !important;
    }
    
    .mega-menu .nav-link::after {
        display: none;
    }
    
    .mega-menu .nav-link .dropdown-arrow {
        margin-left: auto;
    }
    
    .domain-search-wrapper {
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 0;
    }
    
    .domain-search-wrapper input {
        width: 100%;
        padding: 14px 20px;
    }
    
    .domain-search-wrapper .search-btn {
        width: 100%;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-banner {
        padding: 40px 20px;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .top-bar .contact-info span {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .hero-stat .number {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}