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

/* Root değikenleri */
:root {
    --primary-blue: #45b7eb;
    --light-blue: #45b7eb;
    --dark-blue: #0A2240;
    --white: #ffffff;
    --montserrat: 'Montserrat', sans-serif;
    --poppins: 'Poppins', sans-serif;
}

/* Genel stiller */
body {
    font-family: var(--poppins);
    font-weight: 400;
}

/* Header stilleri */
.header {
    width: 100%;
    position: relative;
}

/* Top bar */
.top-bar {
    background-color: var(--light-blue);
    padding: 10px 0;
}

.contact-info {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-family: var(--montserrat);
    font-weight: 400;
    opacity: 0.9;
}

/* Ana navigasyon */
.main-nav {
    padding: 15px 0;
    box-shadow: none;
    position: absolute;
    width: 100%;
    z-index: 10;
    background-color: transparent;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 40px;
    opacity: 0.95;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--montserrat);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: font-weight 0.2s ease;
}

.nav-links a:hover {
    font-weight: 600;
}

.nav-links a.active {
    font-weight: 600;
} 

.book-now-btn {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 8px 20px;
    font-weight: 400;
    font-family: var(--montserrat);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.book-now-btn:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* Hero bölümü */
.hero {
    background-image: url('../images/slider_back.png');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    padding-top: 0;
    color: var(--white);
    max-width: 600px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-family: var(--poppins);
}

.hero h1 span {
    display: block;
    font-size: 3.8rem;
    font-weight: 500;
    margin: 5px 0;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 60px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    font-family: var(--poppins);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: fit-content;
    margin-left: auto;
}

.btn {
    background-color: #2565c9;
    color: var(--white);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    opacity: 0.95;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    width: auto;
    letter-spacing: 0.3px;
}

.btn:hover {
    background-color: var(--white);
    color: #2565c9;
    transform: translateX(-5px);
}

/* Hero footer - eski hero::after yerine */
.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--light-blue);
    color: var(--white);
    text-align: center;
    padding: 5px 0;
    font-family: var(--poppins);
    font-size: 25px;
    font-weight: 100;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* Alt başlık */
.hero-content > span {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Yeni bilgi bölümü */
.info-section {
    background-color: var(--white);
    padding: 50px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-family: var(--montserrat);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title::before,
.section-title::after {
    content: '';
    width: 25px;
    height: 1px;
    background-color: var(--primary-blue);
}

.section-title h4 {
    font-family: var(--montserrat);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--dark-blue);
}

.info-section .container {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.subtitle {
    font-family: var(--montserrat);
    font-size: 13px;
    font-weight: 500;
    color: black;
    margin-bottom: 20px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

/* subtitle Section Responsive */
@media (max-width: 992px) {
    .subtitle {
    text-align: center;
    font-family: var(--montserrat);
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    letter-spacing: 1px;
    }

    .subtitle::after {
    content: '';
    width: 25px;
    height: 1px;
    background-color: var(--primary-blue);
  }
}

.subtitle::before {
    content: '';
    width: 25px;
    height: 1px;
    margin-right: 15px;
    background-color: var(--primary-blue);

}



.info-content h1 {
    font-family: var(--poppins);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 25px;
    line-height: 1.3;
}

.info-content p {
    font-family: var(--poppins);
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #e5e5e5;
    padding: 10px;
}

/* Özellikler bölümü */
.features-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.features-section .container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-box {
    flex: 1;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    background-color: transparent;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    box-shadow: none;
}

.feature-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.feature-box h3 {
    font-family: var(--poppins);
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-box p {
    font-family: var(--poppins);
    font-size: 0.75rem;
    line-height: 1.4;
    color: #666;
    font-weight: 300;
    max-width: 200px;
    margin: 0 auto;
}

/* Slider bölümü */
.slider-section {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

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

/* Müşteri yorumları bölümü */
.testimonials-section {
    padding: 50px 0;
    background-color: var(--white);
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.testimonial-image {
    flex: 1;
    max-width: 500px;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    max-height:600px;
    border: 1px solid #e5e5e5;
    padding: 10px;
}

.testimonial-info {
    flex: 1;
    max-width: 600px;
}

.section-subtitle {
    color: var(--primary-blue);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: var(--montserrat);
}

.testimonial-info h2 {
    font-family: var(--poppins);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.section-description {
    font-family: var(--poppins);
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.testimonial-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.rating {
    margin-bottom: 20px;
}

.star {
    color: #ffd700;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-text {
    font-family: var(--poppins);
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-author {
    margin-top: 15px;
}

.author-name {
    font-family: var(--poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 3px;
}

.author-info {
    font-family: var(--poppins);
    font-size: 0.8rem;
    color: #666;
}

.testimonial-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #e5e5e5;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Banner bölümü */
.banner-section {
    background-image: url('../images/section_bant.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    text-align: center;
    color: var(--white);
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.banner-content h2 {
    font-family: var(--poppins);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.banner-content p {
    font-family: var(--poppins);
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.banner-btn {
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 15px 40px;
    font-family: var(--montserrat);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

/* Neden biz bölümü */
.why-us-section {
    background-image: url('../images/section_bant.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: var(--white);
    position: relative;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.why-us-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.why-us-header {
    flex: 1;
    max-width: 500px;
}

.why-us-header h3 {
    font-family: var(--montserrat);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.why-us-intro h2 {
    font-family: var(--poppins);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 50px;
    max-width: 450px;
}

.why-us-intro p {
    font-family: var(--poppins);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    opacity: 0.9;
}

.why-us-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-us-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-us-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-us-item .icon {
    margin-bottom: 10px;
}

.why-us-item .icon img {
    width: 40px;
    height: 40px;
    opacity: 0.9;
}

.why-us-item h4 {
    font-family: var(--poppins);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.why-us-item p {
    font-family: var(--poppins);
    font-size: 0.80rem;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.9;
}

.read-more {
    font-family: var(--montserrat);
    font-size: 12px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    opacity: 1;
}

/* Bella 572C Bölümü */
.bella-section {
    background-color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.bella-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.bella-image {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.bella-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
}

.bella-section h2 {
    font-family: var(--poppins);
    font-size: 2rem;
    font-weight: 500;
    color: var(--dark-blue);
    margin: 50px auto 30px;
    line-height: 1.2;
    max-width: 1200px;
}

.bella-content {
    max-width: 900px;
    margin: 0 auto;
}

.bella-section h4 {
    font-family: var(--poppins);
    font-size: 1.4rem;
    line-height: 1.3;
    color: #b6b6b6;
    font-weight: 100;
    margin-bottom: 15px;
    max-width: 1200px;
}

/* Schule/Tarife Bölümü */
.pricing-section {
    padding: 40px 0;
    background-color: var(--white);
}

.pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-section h3 {
    text-align: center;
    font-family: var(--montserrat);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pricing-section h3::before,
.pricing-section h3::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #333;
    opacity: 0.3;
}

/* Oberrieden bölümü için özel stiller */
.pricing-section.oberrieden {
    background-color: #f4f8fb;
}

.pricing-section.oberrieden .section-title {
    font-family: var(--poppins);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark-blue);
    margin-bottom: 40px;
    letter-spacing: normal;
}

.pricing-section.oberrieden .section-title::before,
.pricing-section.oberrieden .section-title::after {
    display: none;
} 

.pricing-box {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.pricing-header {
    background-color: var(--primary-blue);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.pricing-header img {
    width: 44px;
    height: 30px;
    object-fit: contain;
}

.pricing-header h4 {
    color: var(--white);
    font-family: var(--poppins);
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
}

.pricing-info {
    background-color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.duration-box, .details-box {
    background-color: #eeeeee;
    padding: 12px 15px;
    border-radius: 4px;
    text-align: left;
    margin-bottom: 15px;
}

.duration-box span, .details-box span {
    display: block;
    font-family: var(--poppins);
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 3px;
}

.duration-box h5, .details-box h5, .details-box p {
    font-family: var(--poppins);
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.details-text {
    font-family: var(--poppins);
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
    text-align: center;
    margin-top: auto;
    padding: 15px 0;
    min-height: 40px;
}

.price-wrapper {
    background-color: #eeeeee;
    padding: 15px;
    margin: 0 -20px -20px -20px;
    border-radius: 0 0 8px 8px;
}

.price {
    width: 100%;
    text-align: center;
    font-family: var(--poppins);
    font-size: 1.5rem;
    font-weight: 500;
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
    margin-left: 2px;
    color: inherit;
}

/* Tüm fiyat kutular için stil */
.pricing-box .price-wrapper {
    background-color: var(--primary-blue);
}

.pricing-box .price {
    color: var(--white);
}

/* kinci kutu için özel renk */
.pricing-box:nth-child(2) .price-wrapper {
    background-color: #4169e1;
}

/* Alt gruptaki kutular için farklı stil */
.pricing-grid.secondary .price-wrapper {
    background-color: var(--primary-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

.pricing-grid.secondary {
    margin-top: 25px;
}

.location-info {
    max-width: 1200px;
    margin: 70px auto 40px;
    text-align: center;
    padding: 0 20px;
}

.location-info p {
    font-family: var(--poppins);
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.location-images {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.location-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-form-section {
    padding: 50px 0;
    background-color: #f4f8fb;
}

.contact-form-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-header .subtitle {
    margin-bottom: 20px;
}

.form-header h2 {
    font-family: var(--poppins);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 25px;
}

.form-header p {
    font-family: var(--poppins);
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a5a5a5;
    margin-bottom: 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-item h3 {
    font-family: var(--poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.contact-name {
    font-family: var(--poppins);
    font-size: 0.9rem;
    color: #a5a5a5;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-title {
    font-family: var(--poppins);
    font-size: 0.8rem;
    color: #a5a5a5;
    margin-bottom: 5px;
}

.contact-detail {
    font-family: var(--poppins);
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a5a5a5;
}

.contact-form {
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--montserrat);
    font-size: 12px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.required {
    color: var(--primary-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-family: var(--poppins);
    font-size: 0.9rem;
    color: #333;
}

.contact-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.submit-btn {
    background-color: #2565c9;
    color: var(--white);
    font-family: var(--montserrat);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #45b7eb;
}

.videos-section {
    padding: 50px 0;
    background-color: var(--white);
}

.videos-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.video-card {
    position: relative;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(69, 183, 235, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-card:hover .play-button {
    background-color: var(--primary-blue);
}

.video-card h3 {
    font-family: var(--poppins);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    text-align: center;
    line-height: 1.4;
}

.section-title {
    text-align: center;
    font-family: var(--montserrat);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title::before,
.section-title::after {
    content: '';
    width: 25px;
    height: 1px;
    background-color: var(--primary-blue);
}

.news-section {
    padding: 80px 0;
    background-color: var(--white);
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    background: var(--white);
    padding: 20px;
}

.news-image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px;
    background-color: var(--white);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.news-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-meta {
    margin-bottom: 15px;
}

.news-date {
    font-family: var(--montserrat);
    font-size: 12px;
    margin-bottom: 10px;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-family: var(--montserrat);
    font-size: 11px;
    color: var(--primary-blue);
    padding: 4px 8px;
    background-color: rgba(69, 183, 235, 0.1);
    border-radius: 4px;
}

.news-content h3 {
    font-family: var(--poppins);
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.4;
    margin-bottom: 25px;
}

.mehr-erfahren-btn {
    display: inline-block;
    font-family: var(--montserrat);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    background-color: #2565c9;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.mehr-erfahren-btn:hover {
    background-color: #45b7eb;
}

.news-footer {
    margin-top: 40px;
    text-align: center;
}

.mehr-anzeigen-btn {
    font-family: var(--montserrat);
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    background-color: #2565c9;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mehr-anzeigen-btn:hover {
    background-color: #45b7eb;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        text-align: center;
        padding: 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero h1 span {
        font-size: 3rem;
    }

    .hero-content > span {
        font-size: 1.6rem;
    }

    .hero-buttons {
        margin: 0 auto;
    }

    .hero-footer {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 span {
        font-size: 2.4rem;
    }

    .hero-content > span {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-footer {
        font-size: 16px;
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h1 span {
        font-size: 2rem;
        margin: 3px 0;
    }

    .hero-content > span {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-footer {
        font-size: 14px;
        padding: 5px 10px;
    }
}

.partners-section {
    padding: 50px 0;
    background-color: var(--white);
}

.partners-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-heading {
    font-family: var(--poppins);
    font-size: 2rem;
    font-weight: 500;
    color: var(--dark-blue);
    text-align: center;
    margin: 40px 0 60px;
    line-height: 1.3;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

.partner-logo {
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

.partners-cta {
    text-align: center;
    margin-top: 60px;
}

.mehr-btn {
    display: inline-block;
    background-color: #2565c9;
    color: var(--white);
    font-family: var(--montserrat);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mehr-btn:hover {
    background-color: #45b7eb;
}

.footer {
    background-color: #2565c9;
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    gap: 60px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 25px;
}

.footer-logo p {
    font-family: var(--poppins);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
  
}

.social-link img {
    height: 20px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.social-link:hover img {
    opacity: 1;
}

.footer-contact h3 {
    font-family: var(--poppins);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.footer-contact p {
    font-family: var(--poppins);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.links-column a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--montserrat);
    font-size: 13px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.links-column a:hover {
    opacity: 1;
}

.footer-bottom {
    margin-top: 80px;
    padding: 20px 0;
    background-color: #45b7eb;
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    font-family: var(--montserrat);
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.senkvy-link img {
    height: 15px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.senkvy-link:hover img {
    opacity: 1;
}

.schiff-header {
    background-image: url('../images/boat-header-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.schule-tarife-header {
    background-image: url('../images/schule-header-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.learnvideos-header {
    background-image: url('../images/learnvideos-header-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.partner-header {
    background-image: url('../images/partner-header-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-header {
    background-image: url('../images/news-header-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.kontakt-header {
    background-image: url('../images/kontakt-header-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.page-hero .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.page-hero .boat-name {
    font-size: 2rem;
    font-weight: 700;
    color: #29ABE2;
    background: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    display: inline-block;
}

/* Konfor Bölümü Stilleri */
.comfort-section {
    padding: 80px 0;
    background-color: var(--white);
}

.comfort-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.comfort-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.comfort-item {
    background-color: #2565c9;
    padding: 40px 30px;
    text-align: center;
    color: var(--white);
    border-radius: 5px;
}

.comfort-item h3 {
    font-family: var(--poppins);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.comfort-item p {
    font-family: var(--poppins);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Galeri Bölümü Stilleri */
.gallery-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.gallery-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-grid {
    margin-top: 50px;
}

.gallery-main {
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    padding: 10px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.gallery-main img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-thumb {
    border: 1px solid #e0e0e0;
    padding: 10px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.gallery-thumb img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.page-description {
    padding: 40px 0;
    text-align: center;
    background-color: var(--white);
}

.page-description .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-description h2 {
    font-family: var(--poppins);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.page-description p {
    font-family: var(--poppins);
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b6b6b6;
    max-width: 800px;
    margin: 0 auto;
}

/* Teknik Özellikler Bölümü */
.technical-specs {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.technical-specs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-family: var(--montserrat);
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-bottom: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    letter-spacing: 1px;
}

.section-title::before,
.section-title::after {
    content: '';
    height: 1px;
    width: 50px;
    background-color: #45b7eb;
    opacity: 0.3;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.spec-item {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
}

.spec-item img {
    width: 80px;
    height: 80px;
    padding: 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    object-fit: contain;
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-content h3 {
    font-family: var(--poppins);
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.spec-content p {
    font-family: var(--poppins);
    font-size: 1rem;
    color: var(--dark-blue);
    font-weight: 500;
    margin: 0;
}

.spec-content span {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: 2px;
}

.partner-cards-section {
    padding: 80px 0;
    background-color: var(--white);
}

.partner-cards-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    margin-bottom: 60px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.partner-logo-area {
    background-color: #f4f4f4;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.partner-logo-area img {
    max-width: 220px;
    height: auto;
}

.partner-logo-area .zur-webseite-btn {
    margin: 0;
    max-width:170px;
}

.partner-info {
    padding: 40px;
    background-color: var(--white);
}

.partner-info p {
    color: #666;
    font-family: var(--poppins);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.partner-info .address {
    font-size: 0.9rem;
    margin: 20px 0;
}

.zur-webseite-btn {
    display: inline-block;
    background-color: #2565c9;
    color: var(--white);
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: var(--montserrat);
    transition: background-color 0.3s ease;
}

.zur-webseite-btn:hover {
    background-color: #45b7eb;
}

/* Kontakt sayfası için özel form stili */
.contact-page-form {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-page-form .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-page-form .contact-info-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-info-box {
    text-align: left;
}

.contact-info-box .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.contact-info-box h3 {
    font-family: var(--poppins);
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.contact-info-box p {
    font-family: var(--poppins);
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.contact-page-form .form-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 4px;
}

.contact-page-form .form-header {
    margin-bottom: 30px;
}

.contact-page-form .subtitle {
    font-family: var(--montserrat);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-page-form h2 {
    font-family: var(--poppins);
    font-size: 2rem;
    color: var(--dark-blue);
    line-height: 1.3;
    margin-bottom: 15px;
}

.contact-page-form .form-header p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Google Maps stili */
.map-section {
    padding: 0;
    filter: grayscale(100%);
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Kontakt sayfası için özel stiller */
.contact-info-boxes {
    padding: 80px 0;
    background-color: var(--white);
}

.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-box {
    text-align: left;
}

.info-box .icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.info-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-box h3 {
    font-family: var(--poppins);
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-box p {
    font-family: var(--poppins);
    font-size: 12px;
    line-height: 1.6;
    color: #666;
}

/* Yeni form container stili */
.contact-form-container {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-form-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-section {
    padding-right: 40px;
}

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

.form-header .subtitle {
    font-family: var(--montserrat);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.form-header h2 {
    font-family: var(--poppins);
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.form-header p {
    font-family: var(--poppins);
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row label {
    font-family: var(--montserrat);
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-blue);
}

.form-row .required {
    color: #ff0000;
}

.name-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form-new input,
.contact-form-new textarea {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--poppins);
    font-size: 14px;
}

.contact-form-new textarea {
    height: 120px;
    resize: none;
}

.submit-button {
    background-color: #2565c9;
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-family: var(--montserrat);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #45b7eb;
}

.form-image {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background-color: var(--white);
}

.form-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* News Detail Styles */
.news-detail {
    position: relative;
    margin-top: -100px; /* Header'ın üzerine gelecek şekilde */
    padding-bottom: 80px;
}

.news-detail .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-detail-image {
    position: relative;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px;
    background: var(--white);
}

.news-detail-image img {
    width: 100%;
    height: 450px; /* Sabit bir yükseklik verdik */
    object-fit: cover; /* Resmi kutuya tam sığdırmak için */
    border-radius: 2px;
    display: block; /* Resim altındaki boşluğu kaldırmak için */
}

.news-detail-image::after {
    content: '';
    position: absolute;
    bottom: 10px; /* Padding'e göre ayarlandı */
    left: 10px; /* Padding'e gre ayarlandı */
    right: 10px; /* Padding'e göre ayarlandı */
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    border-radius: 2px;
    pointer-events: none;
}

.news-detail-image h1 {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: var(--white);
    font-family: var(--poppins);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 1; /* Başlığın gradient üzerinde görünmesi için */
}

.news-detail-content {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
}

.news-text {
    margin-bottom: 30px;
}

.news-text p {
    font-family: var(--poppins);
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.news-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
}

.news-date {
    font-family: var(--montserrat);
    font-size: 14px;
    color: #666;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    font-family: var(--montserrat);
    font-size: 12px;
    color: var(--primary-blue);
    padding: 6px 12px;
    background-color: rgba(69, 183, 235, 0.1);
    border-radius: 4px;
}

/* Responsive tasarım için */
@media (max-width: 992px) {
    .news-card {
        grid-template-columns: 300px 1fr;
        gap: 20px;
        padding: 15px;
    }

    .news-image {
        min-height: 200px;
    }

    .news-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .news-card {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .news-image {
        width: 100%;
        min-height: 250px;
        max-height: 300px;
    }

    .news-content {
        padding: 15px 0;
    }

    .news-tags {
        justify-content: center;
    }

    .news-meta {
        text-align: center;
    }

    .news-content h3 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .mehr-erfahren-btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
}

@media (max-width: 576px) {
    .news-card {
        padding: 10px;
        max-width: 100%;
    }

    .news-image {
        min-height: 200px;
    }

    .news-content {
        padding: 10px 0;
    }

    .news-content h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .tag {
        font-size: 10px;
        padding: 3px 6px;
    }
}

.home-news-section {
    padding: 50px 0;
    background-color: #f4f8fb;
}

.home-news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.home-news-card {
    background: transparent; /* Kartın arka planını şeffaf yapıyoruz */
    border: none; /* Kartın çerçevesini kaldrıyoruz */
    overflow: visible; /* Taşmaları göstermek iin */
    transition: transform 0.3s ease;
}

.home-news-card:hover {
    transform: translateY(-5px);
}

.home-news-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px;
    background: var(--white);
}

.home-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.home-news-content {
    padding: 25px;
}

.home-news-date {
    font-family: var(--montserrat);
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.home-news-content h3 {
    font-family: var(--poppins);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 84px;
}

.news-link {
    font-family: var(--montserrat);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--dark-blue);
}

/* Responsive tasarım için */
@media (max-width: 992px) {
    .home-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-news-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Section Responsive */
@media (max-width: 992px) {
    .features-section .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .feature-box {
        padding: 15px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .feature-icon img {
        width: 50px;
        height: 50px;
    }
}

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

/* Why Us Section Responsive */
@media (max-width: 992px) {
    .why-us-section .container {
        flex-direction: column;
        gap: 40px;
    }

    .why-us-header {
        max-width: 100%;
        text-align: center;
    }

    .why-us-intro h2 {
        max-width: 100%;
        text-align: center;
        font-size: 2rem;
    }

    .why-us-intro p {
        max-width: 100%;
        text-align: center;
    }

    .why-us-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }

    .why-us-item {
        text-align: center;
    }

    .why-us-item .icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 576px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .why-us-item {
        text-align: center;
    }

    .why-us-item .icon {
        margin: 0 auto 15px;
    }
}

/* Pricing Section Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .pricing-grid.secondary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pricing-grid,
    .pricing-grid.secondary {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
        padding:  20px 0px;
    }

    .price-card {
        padding: 20px;
    }
}

/* Contact Form Section Responsive */
@media (max-width: 992px) {
    .contact-form-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .form-image {
        display: none; /* Mobilde formdaki resmi gizle */
    }
}

@media (max-width: 576px) {
    .form-group {
        margin-bottom: 15px;
    }

    .name-inputs {
        grid-template-columns: 1fr;
    }
}

/* Partners Section Responsive */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .partners-heading {
        font-size: 1.3rem;
        padding: 0 20px;
    }
}

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

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
    }

    .partner-logo {
        padding: 20px;
	height:100px;
    }
}

/* Footer Content Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .footer-links {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
	padding: 0px;
	margin: 0px;
    }

    .footer-logo, 
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 2px solid white;
    }

    .footer-links {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .links-column {
        align-items: center;
    }

    .social-link {
        margin-top: 20px;
    }
}

/* Mobil Menü Stilleri */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #45b7eb;
        flex-direction: column;
        padding: 80px 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .nav-links a {
        font-size: 18px;
        color: var(--white);
        opacity: 0.9;
    }

    .nav-links a:hover,
    .nav-links a.active {
        opacity: 1;
    }

    /* Hamburger menü animasyonu */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .book-now-btn {
        display: none;
    }
}

/* Technical Specs Section Responsive */
@media (max-width: 992px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-item {
        padding: 20px;
    }

    .spec-item img {
        width: 50px;
        height: 50px;
    }

    .spec-content h3 {
        font-size: 16px;
    }

    .spec-content p {
        font-size: 14px;
    }

    .spec-content span {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
    }

    .spec-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .spec-content {
        text-align: center;
        margin-top: 15px;
    }
}

/* Comfort Section Responsive */
@media (max-width: 992px) {
    .comfort-section .container {
        padding: 0 20px;
    }

    .comfort-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .comfort-item {
        padding: 20px;
    }

    .comfort-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .comfort-item p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .comfort-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 18px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .comfort-item {
        text-align: center;
    }
}

/* News Detail Responsive */
@media (max-width: 992px) {
    .news-detail-image h1 {
        font-size: 2rem;
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .news-detail-image h1 {
        font-size: 1.8rem;
        bottom: 25px;
        left: 25px;
        right: 25px;
    }
}

@media (max-width: 576px) {
    .news-detail-image h1 {
        font-size: 1.5rem;
        bottom: 20px;
        left: 20px;
        right: 20px;
        line-height: 1.4;
    }

    .news-detail-image {
        padding: 8px;
    }

    .news-detail-image::after {
        bottom: 8px;
        left: 8px;
        right: 8px;
    }
}

/* Partner Cards Responsive */
@media (max-width: 992px) {
    .partner-cards-section .container {
        padding: 0 20px;
    }

    .partner-card {
        grid-template-columns: 300px 1fr;
        gap: 30px;
        padding: 30px;
    }

    .partner-logo-area {
        padding: 20px;
	margin:0;   /* Eklendi */
    }

    .partner-info {
        padding: 0;
    }
    .partner-cards-section {
        padding: 20px 0px;
    }
}

@media (max-width: 768px) {
    .partner-card {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 20px auto;
        gap: 20px;
    }

    .partner-logo-area {
        max-width: 100%;
        margin: 0 auto;
        padding: 15px;
    }

    .partner-logo-area img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .zur-webseite-btn {
        width: 100%;
        text-align: center;
    }

    .partner-info {
        text-align: center;
    }

    .partner-info p {
        font-size: 14px;
        line-height: 1.6;
    }

    .partner-info .address {
        margin: 15px 0;
    }

    .partner-info .reward {
        font-size: 14px;
        padding: 15px;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .partner-card {
        padding: 15px;
    }

    .partner-logo-area {
        max-width: 100%;
        padding: 10px;
	margin:0;   /* Eklendi */
	position: relative; /* Eklendi */
 	height: 160px;


    }

    .zur-webseite-btn {
        padding: 8px 15px;
        font-size: 14px;
	margin: 0;
    	max-width: 170px;
    	position: absolute;
    	bottom: -15px;
   	left: 50%;
   	transform: translateX(-50%);
   	text-align: center;
    }

    .partner-info p {
        font-size: 13px;
	margin-top:20px;
    }

    .partner-info .reward {
        font-size: 13px;
        padding: 12px;
    }
}

/* Contact Info Boxes Responsive */
@media (max-width: 992px) {
    .info-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }

    .info-box {
        padding: 20px;
    }

    .info-box .icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .info-box h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .info-box p {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .info-boxes-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .info-box {
        text-align: center;
        padding: 15px;
    }

    .info-box .icon {
        margin: 0 auto 15px;
    }
}

/* Contact Form Container Responsive */
@media (max-width: 992px) {
    .contact-form-container .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-section {
        padding: 0 20px;
    }

    .form-image {
        display: none;
    }

    .form-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-form-new {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 40px 0;
    }

    .form-header h2 {
        font-size: 24px;
        margin: 10px 0;
    }

    .form-header p {
        font-size: 14px;
        line-height: 1.5;
    }

    .name-inputs {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-row {
        margin-bottom: 20px;
    }

    .form-row label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-row input,
    .form-row textarea {
        padding: 10px;
        font-size: 14px;
    }

    .submit-button {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

/* Kontakt Hero Responsive */
@media (max-width: 992px) {
    .kontakt-header .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .kontakt-header .hero-content h1 {
        font-size: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .kontakt-header .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 15px;
        br {
            display: none;
        }
    }

    .kontakt-header .hero-content {
        text-align: center;
        padding: 40px 0;
    }
}

@media (max-width: 992px) {
    .schiff-header .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .schiff-header .hero-content h1 {
        font-size: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .schiff-header .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 15px;
        br {
            display: none;
        }
    }

    .schiff-header .hero-content {
        text-align: center;
        padding: 40px 0;
    }
}

@media (max-width: 992px) {
    .schule-tarife-header .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .schule-tarife-header .hero-content h1 {
        font-size: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .schule-tarife-header .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 15px;
        br {
            display: none;
        }
    }

    .schule-tarife-header .hero-content {
        text-align: center;
        padding: 40px 0;
    }
}

@media (max-width: 992px) {
    .learnvideos-header .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .learnvideos-header .hero-content h1 {
        font-size: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .learnvideos-header .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 15px;
        br {
            display: none;
        }
    }

    .learnvideos-header .hero-content {
        text-align: center;
        padding: 40px 0;
    }
}

@media (max-width: 992px) {
    .news-header .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .news-header .hero-content h1 {
        font-size: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .news-header .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 15px;
        br {
            display: none;
        }
    }

    .news-header .hero-content {
        text-align: center;
        padding: 40px 0;
    }
}

@media (max-width: 992px) {
    .partner-header .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .partner-header .hero-content h1 {
        font-size: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .partner-header .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 15px;
        br {
            display: none;
        }
    }

    .partner-header .hero-content {
        text-align: center;
        padding: 40px 0;
    }
}

@media (max-width: 992px) {
    .kontakt-header .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .kontakt-header .hero-content h1 {
        font-size: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .kontakt-header .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        padding: 0 15px;
        br {
            display: none;
        }
    }

    .kontakt-header .hero-content {
        text-align: center;
        padding: 40px 0;
    }
}

/* Info Section Responsive */
@media (max-width: 992px) {
    .info-section {
        padding: 40px 0;
    }

    .info-section .container {
        display: block;
        padding: 0;
        max-width: 100%;
    }

    .info-image {
        max-width: 100%;
        margin: 0;
        order: -1;
        padding: 0 20px;
    }

    .info-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        max-height: 300px;
        object-fit: cover;
    }

    .info-content {
        text-align: center;
        max-width: 100%;
        margin: 30px auto 0;
        padding: 0 20px;
    }

    .info-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .info-content h1 br {
        display: none;
    }

    .info-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .info-content p br {
        display: none;
    }
}

@media (max-width: 576px) {
    .info-content h1 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .info-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Videos Grid Responsive */
@media (max-width: 992px) {
    .videos-grid {
        gap: 30px;
        padding: 0 20px;
    }

    .video-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .video-card {
        max-width: 100%;
    }

    .video-thumbnail {
        aspect-ratio: 16/9;
    }

    .video-card h3 {
        font-size: 1.1rem;
        text-align: center;
        margin-top: 15px;
    }
}

/* Top Bar Responsive */
@media (max-width: 768px) {
    .top-bar {
        display: none; /* Mobilde tamamen gizle */
    }
}

/* Alternatif olarak sadece padding'i sıfırlamak isterseniz: */
/*
@media (max-width: 768px) {
    .top-bar {
        padding: 0;
    }

    .contact-info {
        display: none;
    }
}
*/

/* Hero Content Responsive */
@media (max-width: 768px) {
    .hero .container {
        padding: 0 20px;
        align-items: flex-start;
    }

    .hero .hero-content {
        text-align: left;
        align-items: flex-start;
        padding-left: 0;
    }

    .hero .hero-content h1,
    .hero .hero-content h3 {
        text-align: left;
        padding-left: 0;
    }

    .hero .hero-content h1 br {
        display: none;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        padding: 0;
        margin-left: 0px;
        margin-right: 0px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .hero .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero .hero-content h3 {
        font-size: 0.9rem;
    }
}

/* Testimonials Section Responsive */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section .container {
        padding: 0;
    }

    .testimonial-content {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-image {
        width: 100%;
        max-height: 300px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 8px;
        order: 2; /* Resim bölümüne sıralama değeri vererek aşağı taşıyorum */
        display: none; /* Başlangıçta gizliyorum çünkü kopyasını kullanacağız */
    }

    .testimonial-info {
        width: 100%;
        padding: 0 20px;
        text-align: center;
        position: relative;
        order: 1; /* Bilgi bölümüne sıralama değeri vererek yukarı taşıyorum */
    }

    .testimonial-info .subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
        text-align: center;
    }

    .testimonial-info h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .section-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .section-description br {
        display: none;
    }

    /* Testimonial slider resmi için yeni alan oluşturuyorum */
    .section-description::after {
        content: "";
        display: block;
        width: 100%;
        height: 0; /* Boşluk oluşturmak için */
        margin: 0;
        position: relative;
    }

    /* Resimleri section-description sonrasına ekliyoruz */
    .testimonial-mobile-images {
        display: block; /* Mobil görünümde göster */
        width: 100%;
        height: 300px;
        margin: 30px 0;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
    }

    .testimonial-box {
        padding: 20px;
        margin-top: 20px;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .testimonial-author {
        margin-top: 15px;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-info {
        font-size: 0.8rem;
    }

    .testimonial-nav {
        margin-top: 20px;
        justify-content: center;
    }
}

/* Bella Section Responsive */
@media (max-width: 992px) {
    .bella-section {
        padding: 40px 0;
    }

    .bella-section .container {
        flex-direction: column;
        gap: 30px;
    }

    .bella-content {
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .bella-section h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .bella-section h2 {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .bella-section h4 {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .bella-image {
        width: 100%;
        padding: 0 20px;
    }

    .bella-image img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .bella-content h1 {
        font-size: 1.5rem;
    }

    .bella-content h2 {
        font-size: 1rem;
    }

    .bella-image img {
        max-height: 300px;
    }
}

/* Location Section Responsive */
@media (max-width: 992px) {
    .location-images {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
        padding: 0 20px;
        order: -1; /* Resimleri üste taşır */
    }

    .location-images img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .location-info {
        padding: 0 20px;
    }

    .location-info p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .location-images {
        gap: 15px;
        margin-bottom: 25px;
    }

    .location-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Contact Form Section Responsive */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-item {
        text-align: center;
    }

    .contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .contact-name {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .contact-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .contact-detail {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        gap: 25px;
        padding: 0 20px;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }

    .contact-name {
        font-size: 0.95rem;
    }

    .contact-title,
    .contact-detail {
        font-size: 0.85rem;
    }
}

/* Footer Copyright Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        padding: 20px;
    }

    .copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        font-size: 0.85rem;
    }

    .senkvy-link {
        margin-left: 0;
    }

    .senkvy-link img {
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        padding: 15px;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .senkvy-link img {
        max-width: 90px;
    }
}

/* Page Description Section Responsive */
@media (max-width: 992px) {
    .page-description {
        padding: 40px 20px;
    }

    .page-description .container {
        max-width: 100%;
    }

    .page-description h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 20px;
        text-align: center;
    }

    .page-description p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .page-description {
        padding: 30px 15px;
    }

    .page-description h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .page-description p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

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

.testimonial-slider img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    object-fit: cover;
}

.testimonial-slider img.active {
    opacity: 1;
}

.testimonials-slider {
    position: relative;
}

.testimonial-box {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-box.active {
    display: block;
    opacity: 1;
}

.testimonial-mobile-images {
    display: none; /* Varsayılan olarak mobil olmayan görünümde gizle */
}

.testimonial-mobile-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-mobile-images img.active {
    opacity: 1;
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section .container {
        padding: 0;
    }

    .testimonial-content {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-image {
        width: 100%;
        max-height: 300px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 8px;
        order: 2; /* Resim bölümüne sıralama değeri vererek aşağı taşıyorum */
        display: none; /* Başlangıçta gizliyorum çünkü kopyasını kullanacağız */
    }

    .testimonial-info {
        width: 100%;
        padding: 0 20px;
        text-align: center;
        position: relative;
        order: 1; /* Bilgi bölümüne sıralama değeri vererek yukarı taşıyorum */
    }

    .testimonial-info .subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
        text-align: center;
    }

    .testimonial-info h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .section-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .section-description br {
        display: none;
    }

    /* Testimonial slider resmi için yeni alan oluşturuyorum */
    .section-description::after {
        content: "";
        display: block;
        width: 100%;
        height: 0; /* Boşluk oluşturmak için */
        margin: 0;
        position: relative;
    }

    /* Resimleri section-description sonrasına ekliyoruz */
    .testimonial-mobile-images {
        display: block; /* Mobil görünümde göster */
        width: 100%;
        height: 300px;
        margin: 30px 0;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
    }

    .testimonial-box {
        padding: 20px;
        margin-top: 20px;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .testimonial-author {
        margin-top: 15px;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-info {
        font-size: 0.8rem;
    }

    .testimonial-nav {
        margin-top: 20px;
        justify-content: center;
    }
}

.form-message {
    margin: 15px 0;
    padding: 10px;
    border-radius: 4px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 10px;
    border-radius: 4px;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 4px;
}

.form-message .sending {
    color: #0056b3;
    background-color: rgba(0, 86, 179, 0.1);
    border: 1px solid #0056b3;
    padding: 10px;
    border-radius: 5px;
}