/* ============================== 
   GENEL STIL AYARLARI
   ============================== */
:root {
    --primary-color: #00724A; /* İslami yeşil tonu */
    --secondary-color: #C4A484; /* Kum/toprak tonu */
    --accent-color: #9D6129; /* Kahverengi tonu */
    --light-color: #F8F9FA;
    --dark-color: #333333;
    --text-color: #444444;
    --border-color: #E1E1E1;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #F9F7F4;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 5px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #005b3a;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #a58868;
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================== 
   ANIMASYONLAR
   ============================== */
.section-title, .section-content, .stats-container, .packages-container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================== 
   ASILI KANDİL
   ============================== */
.kandil-container {
    position: relative;
    z-index: 10;
    height: 0;
    text-align: center;
}

.kandil-image {
    max-width: 180px;
    position: relative;
    top: -0px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: kandilSway 5s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes kandilSway {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

/* ============================== 
   HEADER & NAVBAR
   ============================== */
.header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    margin-left: 2rem;
}

.navbar ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-color);
}

/* ============================== 
   MODERN HERO SLIDER
   ============================== */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 74px; /* Header yüksekliği */
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 10;
    color: white;
    background-color: rgba(0, 114, 74, 0.8);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--secondary-color);
}

.slide-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 1s forwards 0.5s;
}

.animate-text:nth-child(2) {
    animation-delay: 0.8s;
}

.animate-text:nth-child(3) {
    animation-delay: 1.1s;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.3);
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 114, 74, 0.8);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* ============================== 
   BAŞVURU FORMU
   ============================== */
.basvuru {
    background-color: #f9f7f4;
    padding: 4rem 0 1rem;
    position: relative;
    padding-top: 5rem; /* Kandil için üstten biraz daha fazla boşluk */
}

.basvuru-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-image {
    flex: 1 1 400px;
    position: relative;
    overflow: hidden;
}

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

.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 114, 74, 0.9), rgba(196, 164, 132, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-content h4 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.overlay-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-container {
    flex: 1 1 500px;
    padding: 2.5rem;
    background: white;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-color);
    margin-bottom: 0;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: var(--primary-color);
}

.modern-form input,
.modern-form select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #e1e1e1;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.modern-form input:focus,
.modern-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 114, 74, 0.1);
    background-color: white;
}

.modern-form input::placeholder {
    color: #999;
}

.submit-btn {
    background: linear-gradient(to right, var(--primary-color), #005b3a);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: linear-gradient(to right, #005b3a, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.form-footer p {
    font-size: 0.9rem;
    color: #777;
}

.form-footer i {
    color: var(--primary-color);
    margin-right: 5px;
}

@media screen and (max-width: 768px) {
    .form-container {
        padding: 2rem;
    }
    
    .overlay-content h4 {
        font-size: 1.5rem;
    }
}

/* ============================== 
   KUTSAL YOLCULUK BÖLÜMÜ
   ============================== */
.quran-section {
    padding: 1rem 0 5rem;
    background-color: #f9f7f4;
    background-image: linear-gradient(0deg, rgba(249, 247, 244, 0.95), rgba(249, 247, 244, 0.95)), url('sk_slider1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.journey-card {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    min-height: 450px;
}

.journey-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 114, 74, 0.05) 0%, rgba(196, 164, 132, 0.05) 100%);
    clip-path: polygon(0 0, 70% 0, 50% 100%, 0% 100%);
    z-index: 1;
}

.journey-content {
    flex: 1 1 550px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.journey-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #004a30);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 114, 74, 0.2);
}

.journey-content h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.divider span {
    height: 2px;
    background-color: var(--secondary-color);
    flex-grow: 1;
}

.divider i {
    margin: 0 15px;
    color: var(--secondary-color);
    font-size: 1rem;
}

.journey-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.journey-features {
    margin-bottom: 2rem;
}

.journey-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.journey-features li i {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 114, 74, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1.1rem;
}

.journey-features li span {
    font-size: 1.05rem;
    color: var(--text-color);
}

.journey-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 2rem;
}

.btn-journey-primary, .btn-journey-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-journey-primary {
    background: linear-gradient(to right, var(--primary-color), #004a30);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 114, 74, 0.2);
}

.btn-journey-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 114, 74, 0.3);
    color: white;
}

.btn-journey-secondary {
    background-color: white;
    color: var(--dark-color);
    border: 2px solid #e1e1e1;
}

.btn-journey-secondary:hover {
    background-color: #f9f9f9;
    transform: translateY(-3px);
    border-color: #ccc;
    color: var(--dark-color);
}

.journey-image {
    flex: 1 1 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
    z-index: 2;
}

.journey-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
}

.image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.decoration-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
    background-size: 15px 15px;
    top: 20%;
    right: 10%;
    border-radius: 50%;
    opacity: 0.3;
}

@media screen and (max-width: 992px) {
    .journey-content {
        padding: 2.5rem;
    }
    
    .journey-content h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .journey-content {
        padding: 1.8rem;
        order: 2;
    }
    
    .journey-image {
        order: 1;
        padding: 1.8rem;
    }
    
    .journey-content h2 {
        font-size: 1.8rem;
    }
    
    .journey-bg-shape {
        clip-path: none;
    }
}

/* ============================== 
   İSTATİSTİKLER
   ============================== */
.statistics {
    background: linear-gradient(135deg, var(--primary-color), #004a30);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 0;
}

.statistics .section-title {
    color: white;
}

.statistics .section-title::after {
    background-color: white;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 1.5rem;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    flex: 1 1 200px;
    max-width: 250px;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================== 
   İSLAMI VAKİTLER
   ============================== */
.prayer-times {
    padding: 5rem 0 1rem;
    background-color: #f9f7f4;
    position: relative;
}

.prayer-times::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('sk_slider1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.prayer-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.prayer-header {
    width: 100%;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(to right, var(--primary-color), #004a30);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.prayer-title-icon {
    display: flex;
    align-items: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.prayer-header h2 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
    font-weight: 600;
}

.prayer-ornament {
    position: absolute;
    top: -20px;
    right: 50px;
}

.prayer-ornament-img {
    width: 80px;
    filter: brightness(0) invert(1);
    opacity: 0.3;
}

.prayer-content {
    flex: 1 1 550px;
    padding: 2.5rem;
}

.prayer-intro {
    margin-bottom: 2rem;
}

.prayer-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.prayer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 1.5rem;
}

.prayer-box {
    text-align: center;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.prayer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: white;
    border-color: var(--primary-color);
}

.prayer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #004a30);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.prayer-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.prayer-description {
    font-size: 0.9rem;
    color: #777;
}

.prayer-info {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.prayer-info p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
}

.prayer-action {
    text-align: center;
}

.prayer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, var(--primary-color), #004a30);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 114, 74, 0.2);
}

.prayer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 114, 74, 0.3);
    color: white;
}

.prayer-image {
    flex: 1 1 400px;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.prayer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 114, 74, 0.8), rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.time-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: white;
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.time-badge i {
    font-size: 1.2rem;
}

@media screen and (max-width: 992px) {
    .prayer-header {
        padding: 1.2rem 1.8rem;
    }
    
    .prayer-header h2 {
        font-size: 2rem;
    }
    
    .prayer-content {
        padding: 1.8rem;
    }
    
    .prayer-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .prayer-times-container {
        padding: 1.8rem;
    }
    
    .prayer-times-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .journey-content {
        padding: 2.5rem;
    }
    
    .section-heading h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .prayer-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem;
    }
    
    .prayer-title-icon {
        margin-bottom: 0.8rem;
    }
    
    .prayer-ornament {
        display: none;
    }
    
    .prayer-header h2 {
        font-size: 1.8rem;
    }
    
    .prayer-content {
        order: 2;
        padding: 1.5rem;
    }
    
    .prayer-image {
        order: 1;
    }
    
    .journey-content {
        padding: 1.8rem;
        order: 2;
    }
    
    .journey-image {
        order: 1;
        padding: 1.8rem;
    }
    
    .form-container {
        padding: 1.8rem;
    }
    
    .prayer-times-container {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .prayer-times-container {
        padding: 1.2rem;
    }
    
    .journey-content h2 {
        font-size: 1.8rem;
    }
}

/* İslami Vakitler ile Mekke Namaz Vakitleri arasındaki ayraç */
.prayer-times + .section-divider {
    padding: 0.5rem 0;
    margin-top: 0;
    margin-bottom: 0;
}

/* Başvuru ile Kutsal Yolculuk arasındaki ayraç */
.basvuru + .section-divider {
    padding: 0.5rem 0;
    margin-bottom: 0;
}

.basvuru + .section-divider .divider-icon i:nth-child(2) {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.prayer-times + .section-divider .divider-icon i:nth-child(2) {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.statistics + .prayer-times {
    padding-top: 4rem;
}

/* Genel section arası boşluk azaltma */
section + section {
    margin-top: 0;
}

/* Paketler bölümü için özel boşluk */
.mecca-prayer-times + .packages {
    padding-top: 3rem;
}

/* Footer üzerindeki boşluğu azaltma */
section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 3rem;
}

/* Mekke Namaz Vakitleri - Yatay Tasarım */
.mecca-prayer-horizontal {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.mecca-prayer-left {
    flex: 1 1 60%;
    padding: 2.5rem;
    position: relative;
}

.mecca-prayer-right {
    flex: 1 1 40%;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), #004a30);
    color: white;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.next-prayer-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mecca-prayer-right .next-prayer {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.mecca-prayer-right .next-prayer h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.mecca-prayer-right .next-prayer-name {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mecca-prayer-right .countdown-value {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.mecca-prayer-right .countdown-label {
    color: rgba(255, 255, 255, 0.8);
}

.mecca-prayer-right .mecca-info {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: none;
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: none;
}

.mecca-prayer-right .mecca-info p {
    color: rgba(255, 255, 255, 0.9);
}

.mecca-prayer-right .mecca-info i {
    color: rgba(255, 255, 255, 0.9);
}

.mecca-image-decoration {
    text-align: center;
    margin-top: auto;
}

.mecca-image-decoration i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Namaz Vakitleri Grid - Yatay Tasarım */
.mecca-prayer-left .prayer-times-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 0;
}

.mecca-prayer-left .current-date {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

@media screen and (max-width: 992px) {
    .mecca-prayer-left .prayer-times-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .mecca-prayer-left, .mecca-prayer-right {
        flex: 1 1 100%;
        padding: 2rem;
    }
    
    .mecca-prayer-right {
        padding-bottom: 3rem;
    }
    
    .mecca-image-decoration {
        display: none;
    }
}

/* Add styles for side-by-side layout */
.side-by-side-section {
    padding: 60px 0;
    background-color: #f9f7f4;
}

.side-by-side-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.side-by-side-item {
    flex: 1;
    min-width: 300px;
}

/* Horizontal Card Design */
.horizontal-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.horizontal-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.horizontal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.horizontal-card:hover .horizontal-card-image img {
    transform: scale(1.05);
}

.horizontal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 114, 74, 0.85), rgba(196, 164, 132, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.horizontal-overlay i {
    font-size: 3.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.horizontal-card:hover .horizontal-overlay i {
    transform: scale(1.1);
}

.horizontal-card-content {
    padding: 25px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.card-header i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #004a30);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 114, 74, 0.2);
}

.card-header h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.horizontal-card-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Horizontal Form */
.horizontal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-row .input-group {
    flex: 1;
    min-width: 200px;
}

.form-footer-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 15px;
}

.form-footer-horizontal p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Horizontal Features */
.horizontal-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 114, 74, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Horizontal Buttons */
.horizontal-buttons {
    display: flex;
    gap: 15px;
    margin-top: auto;
    flex-wrap: wrap;
}

.btn-horizontal-primary, .btn-horizontal-secondary {
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-horizontal-primary {
    background: linear-gradient(to right, var(--primary-color), #004a30);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 114, 74, 0.2);
}

.btn-horizontal-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-horizontal-secondary {
    background-color: transparent;
    color: var(--dark-color);
    border: 1px solid #e1e1e1;
}

.btn-horizontal-secondary:hover {
    background-color: #f9f9f9;
    transform: translateY(-3px);
    border-color: #ccc;
    color: var(--dark-color);
}

/* Media query for mobile responsive layout */
@media (max-width: 992px) {
    .side-by-side-wrapper {
        flex-direction: column;
    }
    
    .side-by-side-item {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .horizontal-card-content {
        padding: 20px;
    }
    
    .card-header h3 {
        font-size: 1.4rem;
    }
    
    .form-footer-horizontal {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-footer-horizontal button {
        width: 100%;
    }
    
    .horizontal-buttons {
        flex-direction: column;
    }
    
    .btn-horizontal-primary, .btn-horizontal-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================== 
   PAKETLER
   ============================== */
.packages {
    padding: 4rem 0;
    background-color: white;
}

.packages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    margin-top: 1.5rem;
}

.package-card {
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.package-card.featured::before {
    content: 'Önerilen';
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

.package-card.special {
    border: 2px solid var(--secondary-color);
    position: relative;
}

.package-card.special::before {
    content: 'Özel';
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

.package-header {
    background: linear-gradient(to right, var(--primary-color), #004a30);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
}

.package-content {
    padding: 2rem;
}

.package-content ul {
    margin-bottom: 1.5rem;
}

.package-content ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.package-content ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.package-content .btn {
    width: 100%;
}

/* Media queries for responsive design */
@media screen and (max-width: 992px) {
    .packages-container {
        justify-content: space-around;
    }
    
    .package-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .package-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ============================== 
   FOOTER
   ============================== */
.footer {
    background-color: #222222;
    color: white;
    padding: 3rem 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo, .footer-links, .footer-contact, .footer-social {
    flex: 1 1 250px;
}

.footer-logo h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.8;
}

.footer h3 {
    color: white;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 1.2rem 0;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================== 
   RESPONSIVE TASARIM
   ============================== */
@media screen and (max-width: 992px) {
    .slide-content {
        max-width: 70%;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 74px);
        background-color: white;
        transition: var(--transition);
        z-index: 999;
        box-shadow: var(--box-shadow);
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        padding: 2rem;
    }
    
    .navbar ul li {
        margin: 1rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-content {
        max-width: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .prayer-times .text-content,
    .prayer-times .image-container {
        order: 0;
    }
    
    .section-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .slide-content {
        max-width: 95%;
        padding: 1.5rem;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-box {
        max-width: 100%;
    }
}

/* ============================== 
   MEKKE NAMAZ VAKİTLERİ
   ============================== */
.mecca-prayer-times {
    padding: 1rem 0 5rem;
    background: linear-gradient(rgba(249, 247, 244, 0.95), rgba(249, 247, 244, 0.95)), url('sk_slider1.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

/* ============================== 
   DEKORATİF AYRAÇ
   ============================== */
.section-divider {
    padding: 1rem 0;
    background-color: #f9f7f4;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('sk_slider1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.divider-line {
    height: 2px;
    flex-grow: 1;
    max-width: 200px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.divider-icon {
    display: flex;
    align-items: center;
    margin: 0 1.5rem;
}

.divider-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0.4rem;
}

.divider-icon i:nth-child(2) {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    .divider-line {
        max-width: 100px;
    }
    
    .divider-icon {
        margin: 0 1rem;
    }
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-heading .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    max-width: 300px;
}

.section-heading .divider span {
    height: 2px;
    background-color: var(--secondary-color);
    flex-grow: 1;
}

.section-heading .divider i {
    margin: 0 15px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

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

.prayer-times-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.current-date {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.hijri-date, .gregorian-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.hijri-date i, .gregorian-date i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.prayer-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 2.5rem;
}

.prayer-time-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.prayer-time-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: white;
    border-color: var(--primary-color);
}

.prayer-time-card.active {
    background: linear-gradient(135deg, var(--primary-color), #004a30);
    color: white;
    border-color: var(--primary-color);
}

.prayer-time-card.active .prayer-time-icon,
.prayer-time-card.active .prayer-time-name,
.prayer-time-card.active .prayer-time-value {
    color: white;
}

.prayer-time-icon {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.prayer-time-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.prayer-time-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.next-prayer {
    background: linear-gradient(to right, rgba(0, 114, 74, 0.1), rgba(0, 114, 74, 0.05));
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.next-prayer h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.next-prayer-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    padding: 10px 30px;
    background-color: white;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    border: 1px solid #f0f0f0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: white;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 5px;
    border: 1px solid #f0f0f0;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-color);
}

.mecca-info {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mecca-info p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.mecca-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

@media screen and (max-width: 992px) {
    .prayer-times-container {
        padding: 2rem;
    }
    
    .prayer-times-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .section-heading h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .current-date {
        flex-direction: column;
        gap: 10px;
    }
    
    .countdown-value {
        font-size: 2rem;
        width: 70px;
        height: 70px;
    }
    
    .next-prayer-name {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .prayer-times-container {
        padding: 1.5rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
        width: 60px;
        height: 60px;
    }
    
    .countdown-item {
        min-width: 60px;
    }
}

/* Horizontal Form - Additional Fixes */
.horizontal-form .input-group {
    position: relative;
    margin: 0;
}

.horizontal-form input,
.horizontal-form select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #e1e1e1;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.horizontal-form input:focus,
.horizontal-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 114, 74, 0.1);
    background-color: white;
}

.horizontal-form input::placeholder {
    color: #999;
}

.horizontal-form .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
    z-index: 1;
}

.form-footer-horizontal .submit-btn {
    background: linear-gradient(to right, var(--primary-color), #005b3a);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin: 0;
}

.form-footer-horizontal .submit-btn:hover {
    background: linear-gradient(to right, #005b3a, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-footer-horizontal .submit-btn i {
    transition: transform 0.3s ease;
}

.form-footer-horizontal .submit-btn:hover i {
    transform: translateX(5px);
}

/* Adjust spacing in cards */
.horizontal-card-content {
    padding: 25px 30px 30px;
}

/* Make sure both cards have equal height for better alignment */
.side-by-side-item {
    display: flex;
}

.horizontal-card {
    width: 100%;
}

/* ============================== 
   KUTSAL MEKANLAR
   ============================== */
.holy-places {
    padding: 5rem 0;
    background-color: #f9f7f4;
    position: relative;
}

.holy-places::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('sk_slider1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.holy-places-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.holy-places-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.holy-places-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.holy-places-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.place-item {
    display: flex;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.place-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.place-icon {
    width: 70px;
    min-width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), #004a30);
    color: white;
    font-size: 1.5rem;
}

.place-info {
    padding: 15px 20px;
    flex: 1;
}

.place-info h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.place-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.5;
}

.place-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.place-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.place-link:hover i {
    transform: translateX(3px);
}

@media screen and (max-width: 768px) {
    .holy-places-grid {
        flex-direction: column;
    }
    
    .place-icon {
        width: 60px;
        min-width: 60px;
    }
}

/* Müşteri Yorumları Bölümü */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" width="80" height="80"><path fill="%23075e54" fill-opacity="0.03" d="M14,16.6L10.3,15L16,8.6V0h2v8.6L12.3,15L16,16.6V24h-2V16.6z M64,16.6L60.3,15L66,8.6V0h2v8.6L62.3,15L66,16.6V24h-2V16.6z M64,64.6L60.3,63L66,56.6V48h2v8.6L62.3,63L66,64.6V72h-2V64.6z M14,64.6L10.3,63L16,56.6V48h2v8.6L12.3,63L16,64.6V72h-2V64.6z"></path></svg>');
    opacity: 0.5;
}

.testimonials .section-title {
    color: #075e54;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.testimonials .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonials .divider span {
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #075e54;
    opacity: 0.7;
}

.testimonials .divider i {
    font-size: 1.2rem;
    color: #075e54;
    margin: 0 15px;
}

.testimonials .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1.1rem;
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
}

.testimonial-wrapper {
    position: relative;
    min-height: 300px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateX(50px);
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-content {
    position: relative;
    padding: 30px 20px;
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 2rem;
    color: #075e54;
    opacity: 0.2;
}

.testimonial-text {
    padding: 10px 0 20px 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(7, 94, 84, 0.1);
    padding-top: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background-color: #f0f0f0;
    border: 2px solid #075e54;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #075e54;
    font-size: 1.5rem;
}

.author-info h4 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    color: #075e54;
}

.author-info p {
    margin: 0 0 8px;
    color: #777;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-prev,
.testimonial-next {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #075e54;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: rgba(7, 94, 84, 0.1);
}

.testimonial-dots {
    display: flex;
    margin: 0 15px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dedede;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dots .dot.active {
    background-color: #075e54;
    transform: scale(1.2);
}

.testimonial-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonial-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonial-slider {
        padding: 15px;
    }
    
    .testimonial-wrapper {
        min-height: 380px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-wrapper {
        min-height: 450px;
    }
    
    .quote-icon {
        left: 10px;
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        padding-left: 15px;
    }
}

/* Popüler Turlar Bölümü */
.popular-tours {
    padding: 80px 0;
    background-color: white;
}

.popular-tours .section-title {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.popular-tours .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.popular-tours .divider span {
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.7;
}

.popular-tours .divider i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0 15px;
}

.popular-tours .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1.1rem;
}

.tours-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 40px;
}

.tour-card {
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tour-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.03);
}

.tour-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.tour-badge {
    position: absolute;
    top: 20px;
    right: -32px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-weight: 500;
    transform: rotate(45deg);
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.tour-price {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-flex;
    flex-direction: column;
    line-height: 1.2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.tour-price span {
    font-size: 1.2rem;
    font-weight: 700;
}

.tour-price small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.tour-duration {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.tour-content {
    padding: 25px;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffc107;
    margin-bottom: 15px;
}

.tour-rating span {
    color: #777;
    font-size: 0.9rem;
    margin-left: 5px;
}

.tour-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.tour-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.tour-features {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.feature i {
    color: var(--primary-color);
}

.tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, var(--primary-color), #004a30);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    justify-content: center;
}

.tour-btn:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: white;
    transform: translateY(-3px);
}

.tour-btn i {
    transition: transform 0.3s ease;
}

.tour-btn:hover i {
    transform: translateX(5px);
}

.all-tours {
    text-align: center;
}

.all-tours-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.all-tours-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.all-tours-btn i {
    transition: transform 0.3s ease;
}

.all-tours-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .tours-container {
        justify-content: space-around;
    }
    
    .tour-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .tour-card.featured {
        transform: scale(1);
    }

    .tour-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .tour-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ============================== 
   ÇEREZ İZNİ POPUP
   ============================== */
.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 480px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    border: 1px solid #f0f0f0;
}

.cookie-consent.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    animation: cookieBounce 0.8s;
}

@keyframes cookieBounce {
    0% {
        transform: translateX(-50%) translateY(100px);
    }
    70% {
        transform: translateX(-50%) translateY(-10px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

.cookie-content {
    padding: 25px;
}

.cookie-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.cookie-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.cookie-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 0;
}

.cookie-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: linear-gradient(to right, var(--primary-color), #004a30);
    color: white;
    flex: 2;
}

.accept-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 114, 74, 0.2);
}

.settings-btn {
    background-color: #f5f5f5;
    color: #555;
    border: 1px solid #e0e0e0;
    flex: 1;
}

.settings-btn:hover {
    background-color: #eaeaea;
    transform: translateY(-3px);
}

/* Responsive for smaller screens */
@media (max-width: 576px) {
    .cookie-consent {
        width: 95%;
        bottom: 15px;
    }
    
    .cookie-content {
        padding: 20px;
    }
    
    .cookie-header {
        margin-bottom: 10px;
    }
    
    .cookie-header i {
        font-size: 1.5rem;
    }
    
    .cookie-header h3 {
        font-size: 1.3rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
} 