:root {
            --primary-color: #1a6aa2;
            --secondary-color: #f8b500;
            --dark-color: #333;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --rota-color: #3498db;
            --gocbe-color: #2ecc71;
            --kesif-color: #9b59b6;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        /* Pricing Section - YENİ TASARIM */
        #paketler {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        #paketler:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--rota-color), var(--gocbe-color), var(--kesif-color));
        }
        
        .package-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .package-header h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .package-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        
        .package-header p {
            font-size: 1.1rem;
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .fuar-banner {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin: 20px auto 30px;
            max-width: 800px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(238, 90, 82, 0.3);
            border: 2px dashed white;
            position: relative;
            overflow: hidden;
        }
        
        .fuar-banner:before {
            content: '🔥';
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
        }
        
        .fuar-banner:after {
            content: '🔥';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
        }
        
        .fuar-banner h4 {
            margin: 0;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .fuar-banner p {
            margin: 5px 0 0;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        .pricing-card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            padding: 0;
            height: 100%;
            position: relative;
            background: white;
            overflow: hidden;
        }
        
        .pricing-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .pricing-card.featured {
            border: 3px solid var(--secondary-color);
            transform: scale(1.05);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-20px);
        }
        
        .package-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 8px 40px;
            font-size: 0.9rem;
            font-weight: 700;
            transform: rotate(45deg);
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            z-index: 2;
        }
        
        .fuar-badge {
            position: absolute;
            top: 15px;
            left: -30px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 8px 35px;
            font-size: 0.8rem;
            font-weight: 700;
            transform: rotate(-45deg);
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 2;
        }
        
        .pricing-card-header {
            padding: 40px 30px 30px;
            border-radius: 20px 20px 0 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card-header.rota {
            background: linear-gradient(135deg, var(--rota-color), #2980b9);
        }
        
        .pricing-card-header.gocbe {
            background: linear-gradient(135deg, var(--gocbe-color), #27ae60);
        }
        
        .pricing-card-header.kesif {
            background: linear-gradient(135deg, var(--kesif-color), #8e44ad);
        }
        
        .pricing-card-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: 100% 100%;
        }
        
        .package-title {
            font-size: 2.2rem;
            margin-bottom: 10px;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        
        .package-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 0;
            font-style: italic;
        }
        
        .package-price-container {
            padding: 30px 20px;
            position: relative;
        }
        
        .price-main {
            display: flex;
            justify-content: center;
            align-items: baseline;
            margin-bottom: 10px;
        }
        
        .price-old {
            font-size: 1.3rem;
            color: var(--gray-color);
            text-decoration: line-through;
            margin-right: 15px;
        }
        
        .price-new {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        
        .price-symbol {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            vertical-align: top;
            margin-right: 2px;
        }
        
        .price-period {
            font-size: 1rem;
            color: var(--gray-color);
            margin-left: 5px;
        }
        
        .price-vat {
            font-size: 0.9rem;
            color: #dc3545;
            font-weight: 600;
            margin-top: -5px;
        }
        
        .price-saving {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-block;
            margin-top: 15px;
            box-shadow: 0 4px 15px rgba(238, 90, 82, 0.3);
        }
        
        .package-content {
            padding: 0 30px 30px;
        }
        
        .package-section-title {
            color: var(--primary-color);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            text-align: center;
        }
        
        .feature-list-enhanced {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-list-enhanced li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            text-align: left;
            position: relative;
            padding-left: 30px;
        }
        
        .feature-list-enhanced li:last-child {
            border-bottom: none;
        }
        
        .feature-list-enhanced li i {
            position: absolute;
            left: 0;
            top: 13px;
            font-size: 1rem;
        }
        
        .feature-list-enhanced .fa-check {
            color: var(--gocbe-color);
        }
        
        .feature-list-enhanced .fa-star {
            color: var(--secondary-color);
        }
        
        .package-button-container {
            padding: 0 30px 35px;
        }
        
        .btn-package {
            padding: 15px 40px;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            border: 3px solid transparent;
            transition: all 0.3s;
            width: 100%;
            position: relative;
            overflow: hidden;
            margin-bottom: 15px;
        }
        
        .btn-package:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }
        
        .btn-package:hover:before {
            left: 100%;
        }
        
        .btn-rota {
            background: linear-gradient(135deg, var(--rota-color), #2980b9);
            color: white;
        }
        
        .btn-rota:hover {
            background: linear-gradient(135deg, #2980b9, var(--rota-color));
            color: white;
            border-color: var(--rota-color);
        }
        
        .btn-gocbe {
            background: linear-gradient(135deg, var(--gocbe-color), #27ae60);
            color: white;
        }
        
        .btn-gocbe:hover {
            background: linear-gradient(135deg, #27ae60, var(--gocbe-color));
            color: white;
            border-color: var(--gocbe-color);
        }
        
        .btn-kesif {
            background: linear-gradient(135deg, var(--kesif-color), #8e44ad);
            color: white;
        }
        
        .btn-kesif:hover {
            background: linear-gradient(135deg, #8e44ad, var(--kesif-color));
            color: white;
            border-color: var(--kesif-color);
        }
        
        .btn-sec {
            background: #f8f9fa;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .btn-sec:hover {
            background: var(--primary-color);
            color: white;
        }
        
        /* Sözleşme Onay Modal */
        .contract-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 9999;
            overflow-y: auto;
        }
        
        .contract-content {
            background-color: white;
            margin: 50px auto;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }
        
        .contract-header {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .contract-header h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .contract-body {
            margin-bottom: 25px;
        }
        
        .contract-section {
            margin-bottom: 20px;
        }
        
        .contract-section h5 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .contract-section p {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .contract-checkbox {
            margin: 20px 0;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 5px;
            border-left: 4px solid var(--primary-color);
        }
        
        .contract-checkbox label {
            font-weight: 600;
            margin-left: 10px;
            cursor: pointer;
        }
        
        .contract-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        
        .contract-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
        }
        
        .package-comparison {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-top: 60px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .comparison-title {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th {
            background: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: center;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
            text-align: center;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .comparison-table .fa-check {
            color: var(--gocbe-color);
            font-size: 1.2rem;
        }
        
        .comparison-table .fa-times {
            color: #dc3545;
            font-size: 1.2rem;
        }
        
        @media (max-width: 992px) {
            .pricing-card.featured {
                transform: scale(1);
                margin-top: 20px;
                margin-bottom: 20px;
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-20px);
            }
            
            .package-header h2 {
                font-size: 2.2rem;
            }
            
            .price-new {
                font-size: 2.5rem;
            }
            
            .fuar-banner {
                padding: 12px;
            }
            
            .fuar-banner h4 {
                font-size: 1.1rem;
            }
            
            .contract-content {
                width: 95%;
                margin: 20px auto;
                padding: 20px;
            }
        }
        
        @media (max-width: 768px) {
            #paketler {
                padding: 60px 0;
            }
            
            .package-header h2 {
                font-size: 1.8rem;
            }
            
            .package-title {
                font-size: 1.8rem;
            }
            
            .price-new {
                font-size: 2rem;
            }
            
            .package-comparison {
                padding: 20px;
                overflow-x: auto;
            }
            
            .comparison-table {
                min-width: 600px;
            }
            
            .fuar-banner:before,
            .fuar-banner:after {
                display: none;
            }
            
            .contract-actions {
                flex-direction: column;
                gap: 10px;
            }
            
            .contract-actions .btn {
                width: 100%;
            }
        }
        
        /* Mevcut stilleri koruyorum, sadece buraya ekliyorum */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .navbar-brand span {
            color: var(--secondary-color);
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark-color);
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/karavan.jpg') no-repeat center center/cover;
            color: white;
            padding: 150px 0 100px;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #155a8a;
            border-color: #155a8a;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-secondary:hover {
            background-color: #e0a500;
            border-color: #e0a500;
            color: var(--dark-color);
            transform: translateY(-2px);
        }
        
        .btn-whatsapp {
            background-color: #25D366;
            border-color: #25D366;
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-whatsapp:hover {
            background-color: #128C7E;
            border-color: #128C7E;
            color: white;
            transform: translateY(-2px);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .service-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            padding: 2rem;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list i {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        
        .contact-info {
            margin-bottom: 2rem;
        }
        
        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
            width: 20px;
        }
        
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0;
        }
        
        .footer a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--secondary-color);
        }
        
        .social-icons a {
            display: inline-block;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .selected-package {
            background-color: #f8f9fa;
            border-left: 4px solid var(--secondary-color);
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: none;
        }
        
        .selected-package.active {
            display: block;
        }
        
        /* Form Alanları için ek stil */
        .form-label {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        /* SSS Stilleri - TAM HALİ */
        .faq-section {
            background-color: #f9f9f9;
            padding: 80px 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            overflow: hidden;
            background-color: white;
        }
        
        .faq-question {
            padding: 20px;
            background-color: var(--primary-color);
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: #155a8a;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 1000px;
        }
        
        .faq-answer p {
            margin-bottom: 0;
        }
        
        .faq-category {
            margin-bottom: 40px;
        }
        
        .faq-category-title {
            color: var(--primary-color);
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        
        .faq-search {
            margin-bottom: 40px;
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
            
            .faq-question {
                padding: 15px;
                font-size: 0.95rem;
            }
        }