/* Temiz Netlify2 CSS - SEO Optimized */
:root {
    --vh: 1vh;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f8fafc;
    color: #222;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Touch device optimizasyonları */
.touch-device .btn:hover {
    transform: none;
}

.touch-device .service-card:hover {
    transform: none;
}

/* Yeni animasyonlar */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(37,99,235,0.3); }
    50% { box-shadow: 0 0 20px rgba(37,99,235,0.6); }
}

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.glow-animation {
    animation: glow 2s ease-in-out infinite;
}

.slide-in-left {
    animation: slideInFromLeft 1s ease-out;
}

.slide-in-right {
    animation: slideInFromRight 1s ease-out;
}

.bounce-in {
    animation: bounceIn 1s ease-out;
}
.navbar {
    width: 100vw;
    left: 0;
    right: 0;
    top: 0;
    position: sticky;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    margin-bottom: 32px;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    padding: 0 32px;
    gap: 32px;
}
.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #2563eb;
    font-weight: 700;
    gap: 8px;
    height: 100%;
}

.nav-logo i {
    font-size: 1.1rem;
    margin-right: 4px;
}

.nav-logo span {
    font-size: 1.2rem;
    line-height: 1;
}
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    justify-content: flex-end;
}
.nav-link {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link:hover, .booking-btn {
    color: #2563eb;
}
.booking-btn {
    background: #2563eb;
    color: #fff !important;
    border-radius: 20px;
    padding: 8px 20px;
    margin-left: 10px;
}
.hamburger {
    display: none;
}
.hero {
    min-height: 60vh;
    min-height: calc(var(--vh, 1vh) * 60);
    background: linear-gradient(135deg, #2563eb11, #1d4ed811);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 80px;
    position: relative;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-subtitle-main {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2563eb;
    margin-top: 10px;
    display: block;
}

.highlight {
    color: #2563eb;
    text-shadow: 0 2px 4px rgba(37,99,235,0.3);
}

.price-highlight {
    color: #10b981;
    font-weight: 700;
    font-size: 1.2em;
    text-shadow: 0 1px 2px rgba(16,185,129,0.3);
}

/* Hero yazı okunabilirliği */
.hero-subtitle {
    color: #fff !important;
    text-shadow: 0 2px 12px #222b, 0 1px 2px #000a !important;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}
.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}
.btn-primary:hover, .btn-secondary:hover {
    background: #1d4ed8;
    color: #fff;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}
.stat-item {
    text-align: center;
}
/* İstatistik renk ve gölge */
.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1d4ed8;
    letter-spacing: 1px;
    transition: color 0.3s;
    animation: popIn 1.2s;
    text-shadow: 0 2px 8px #2563eb33, 0 1px 2px #0002;
}
.stat-label {
    color: #2563eb;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 4px #2563eb22;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}
.section-header p {
    color: #6b7280;
}
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.about-text {
    flex: 1;
}
.about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.about-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.about-image-container:hover img {
    transform: scale(1.1);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.about-image-container:hover .about-image-overlay {
    transform: translateY(0);
}

.about-image-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.about-image-overlay p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #fff;
    opacity: 0.9;
}

.about-placeholder {
    width: 100%;
    max-width: 350px;
    height: 250px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.about-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}
.about-placeholder h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 600;
}
.about-placeholder p {
    font-size: 1rem;
    opacity: 0.9;
}
.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.feature i {
    font-size: 1.3rem;
    color: #2563eb;
    margin-top: 3px;
}
.feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}
.feature p {
    color: #6b7280;
    font-size: 0.95rem;
}
.services {
    padding: 60px 0;
}
.services-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    max-width: 500px;
    width: 100%;
}
.service-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.04);
}
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2563eb;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.service-icon i {
    font-size: 2rem;
    color: #fff;
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}
.service-card p {
    color: #6b7280;
    margin-bottom: 18px;
    line-height: 1.5;
}
.service-features {
    list-style: none;
    margin-bottom: 18px;
    text-align: left;
    padding: 0;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    color: #6b7280;
}
.service-features i {
    color: #10b981;
    font-size: 1rem;
}
.service-price {
    margin-bottom: 15px;
}
.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
}
.duration {
    color: #6b7280;
    font-size: 1rem;
}
.gallery {
    padding: 60px 0;
    background: #f8fafc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
}

.gallery-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.gallery-row.reverse {
    flex-direction: row-reverse;
}

.gallery-img {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-desc {
    flex: 1;
    padding: 20px;
}

.gallery-desc h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 15px;
}

.gallery-desc p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1.1rem;
}
.gallery-item {
    flex: 1 1 270px;
    max-width: 320px;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

/* Fotoğraf yüklenmediğinde placeholder */
.gallery-image:not(:has(img[src])) {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.gallery-image:not(:has(img[src]))::before {
    content: "📸";
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.gallery-image:not(:has(img[src]))::after {
    content: "Fotoğraf yükleniyor...";
    font-size: 1rem;
    opacity: 0.9;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

.gallery-image:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.gallery-overlay p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #fff;
    opacity: 0.9;
}
.gallery-placeholder:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: scale(1.05);
}
.gallery-placeholder i {
    display: block;
    margin: 0 auto 12px auto;
    font-size: 2.5rem;
    color: #fff;
}
.gallery-placeholder h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
.gallery-placeholder p {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}
/* İletişim Bölümü */
.contact {
    padding: 60px 0;
    background: #f1f5f9;
}
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.contact-info-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
}

.contact-info-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(37,99,235,0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37,99,235,0.15);
}

.contact-info-item i {
    font-size: 2rem;
    color: #2563eb;
    min-width: 40px;
    text-align: center;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.contact-info-item p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 600;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}
/* İletişim formu modernizasyonu */
.contact-form {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    padding: 36px 28px;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(37,99,235,0.07);
}
.contact-form input,
.contact-form textarea {
    padding: 16px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1.08rem;
    font-family: inherit;
    resize: none;
    background: #f8fafc;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #2563eb0a;
    color: #222;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 2px solid #2563eb;
    outline: none;
    box-shadow: 0 0 0 2px #2563eb33;
    background: #fff;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}
.contact-form button {
    align-self: flex-end;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 12px #2563eb22;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

@media (max-width: 600px) {
    .contact-form button {
        align-self: center;
    }
}
.contact-form button:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 18px #2563eb33;
    transform: translateY(-2px) scale(1.04);
}
/* İletişim bilgi kutusu modernizasyonu */
.contact-info {
    flex: 1;
    min-width: 220px;
    background: #2563eb;
    color: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    font-size: 1.13rem;
    box-shadow: 0 6px 32px rgba(37,99,235,0.09);
    justify-content: center;
}
.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.contact-info i {
    font-size: 1.35em;
    margin-right: 8px;
    opacity: 0.92;
}
/* Footer */
.footer {
    background: #1f2937;
    color: #fff;
    padding: 40px 0 0 0;
    margin-top: 40px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #374151;
}
.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}
.footer-social {
    display: flex;
    gap: 15px;
}
.footer-social a {
    color: #fff;
    font-size: 1.3rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.footer-social a:hover {
    opacity: 1;
}
.footer-bottom {
    text-align: center;
    padding: 18px 0 10px 0;
    font-size: 0.98rem;
    color: #cbd5e1;
    opacity: 0.85;
}
/* Animasyonlar */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Yeni animasyon sınıfları */
.animate-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.service-card.animate-in {
    animation: slideUp 0.8s ease-out forwards;
}

.gallery-item.animate-in {
    animation: slideUp 0.8s ease-out forwards;
}

.feature.animate-in {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.about-placeholder.animate-in {
    animation: bounceIn 1s ease-out forwards;
}

/* Hover animasyonları */
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.gallery-placeholder:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37,99,235,0.2);
}

/* Loading animasyonu */
.loading {
    animation: pulse 1.5s infinite;
}

/* Scroll animasyonları */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Navbar animasyonu */
.navbar { animation: fadeIn 1.2s; }
/* Başlıklar animasyonu */
.section-header h2, .hero-title { animation: fadeIn 1.2s; }
/* Hizmet kartları animasyonu */
.service-card { opacity: 0; animation: fadeIn 1s forwards; animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }
/* Hizmet kartı hover animasyonu daha modern */
.service-card {
    transition: transform 0.28s cubic-bezier(.39,.575,.565,1.000), box-shadow 0.28s, border 0.2s;
    box-shadow: 0 4px 18px rgba(37,99,235,0.07);
}
.service-card:hover {
    transform: scale(1.07) translateY(-10px);
    box-shadow: 0 16px 40px rgba(37,99,235,0.18), 0 2px 8px #2563eb22;
    border: 2px solid #2563eb;
    z-index: 2;
}
/* Buton animasyonları */
.btn, .booking-btn {
  transition: transform 0.18s cubic-bezier(.39,.575,.565,1.000), box-shadow 0.18s;
}
.btn:hover, .booking-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 16px rgba(37,99,235,0.13);
}
.btn:active, .booking-btn:active {
  transform: scale(0.97);
}
/* Galeri animasyonu */
.gallery-item {
  opacity: 0;
  animation: slideUp 1s forwards;
}
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
/* Footer animasyonu */
.footer { animation: fadeIn 1.5s; }
/* Hero video arka planı */
.hero {
    position: relative;
    overflow: hidden;
}
.hero-bg-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
    z-index: 0;
    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none !important;
    pointer-events: none;
}
.hero-content, .hero-stats { position: relative; z-index: 1; }

/* Navbar link animasyonları ve font değişimi */
.nav-link.nav-anim {
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    font-family: 'Poppins', sans-serif;
}
.nav-link.nav-anim:hover, .nav-link.nav-anim:focus {
    color: #fff;
    background: #2563eb;
    box-shadow: 0 2px 12px rgba(37,99,235,0.13);
    text-shadow: none;
    font-weight: 500;
    font-size: 1em;
    border-radius: 8px;
}
.nav-link.nav-anim.active {
    color: #fff;
    background: #1d4ed8;
    box-shadow: 0 4px 16px rgba(37,99,235,0.18);
    font-weight: 500;
    font-size: 1em;
    border-radius: 10px;
}

/* Fade-in ve slide-up animasyonları daha belirgin */
.fade-in {
    animation: fadeIn 1.2s cubic-bezier(.39,.575,.565,1.000) both;
}
.slide-up {
    animation: slideUp 1.2s cubic-bezier(.39,.575,.565,1.000) both;
}

/* Hakkımızda ve diğer fade-in class'lı bölümler için animasyon */
.about.fade-in, .services.fade-in, .gallery.fade-in, .contact.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(.39,.575,.565,1.000) both;
    animation-delay: 0.2s;
}
@media (max-width: 900px) {
    .about-content { flex-direction: column; gap: 20px; }
    .hero-title { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 10px; }
    .contact-content { flex-direction: column; gap: 20px; }
    .footer-content { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (min-width: 601px) {
    .hero-title { font-size: 2.5rem; font-weight: 700; color: #1f2937; margin-bottom: 10px; }
    .hero-subtitle { color: #6b7280; margin-bottom: 30px; font-size: 1.15rem; font-weight: 400; text-shadow: none; }
    .hero-buttons { display: flex; gap: 20px; margin-bottom: 30px; }
    .btn { font-size: 16px; padding: 12px 24px; }
    .hero-stats { display: flex; gap: 40px; margin-top: 30px; }
    .stat-item { text-align: center; }
    .stat-number { font-size: 2rem; font-weight: 700; color: #2563eb; }
    .stat-label { color: #6b7280; font-size: 1rem; }
}
@media (max-width: 600px) {
    .hero {
        min-height: 70vh;
        min-height: calc(var(--vh, 1vh) * 70);
        padding: 80px 16px 40px 16px;
    }
    .hero-title { 
        font-size: 1.8rem; 
        margin-bottom: 16px; 
        line-height: 1.3;
        text-align: center;
    }
    .hero-subtitle { 
        color: #fff; 
        text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.3); 
        font-size: 1.1rem; 
        margin-bottom: 24px; 
        text-align: center;
        line-height: 1.5;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons { 
        flex-direction: column; 
        gap: 12px; 
        margin-bottom: 24px; 
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .btn { 
        font-size: 1rem; 
        padding: 14px 24px; 
        width: 100%; 
        text-align: center;
        border-radius: 8px;
        justify-content: center;
    }
    .hero-stats { 
        flex-direction: column; 
        align-items: center; 
        gap: 0; 
        margin-top: 20px; 
        width: 100%;
    }
    .hero-stats-row { 
        flex-direction: row; 
        justify-content: center; 
        gap: 24px; 
        width: 100%; 
        max-width: 300px;
    }
    .stat-item { 
        text-align: center; 
        min-width: 80px; 
    }
    .stat-number { 
        font-size: 1.4rem; 
        font-weight: 700;
        color: #2563eb;
    }
    .stat-label { 
        font-size: 0.9rem; 
        color: #6b7280;
        font-weight: 500;
    }
}
@media (max-width: 600px) {
    .nav-container { 
        flex-direction: row; 
        height: 60px; 
        padding: 0 16px; 
        justify-content: space-between;
    }
    .nav-logo { 
        font-size: 0.95rem; 
        gap: 6px; 
        flex: 1;
    }
    .nav-logo i { font-size: 1.1rem; }
    .nav-logo span { font-size: 0.95rem; }
    .hamburger { 
        width: 28px; 
        height: 28px; 
        position: relative;
        right: 0;
        top: 0;
    }
    .navbar.open .nav-menu {
        position: fixed;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 90vw;
        max-width: 300px;
        background: #1e293b;
        border-radius: 16px;
        padding: 20px 0;
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        z-index: 120;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .nav-link.nav-anim {
        font-size: 1rem;
        padding: 12px 20px;
        width: 90%;
        text-align: center;
        color: #fff;
        border-radius: 10px;
        background: transparent;
        margin: 0 auto;
        transition: background 0.2s, color 0.2s;
        font-weight: 500;
        display: block;
    }
    .nav-link.nav-anim:hover, .nav-link.nav-anim.active {
        background: #2563eb;
        color: #fff;
    }
    .hero-buttons { 
        flex-direction: column; 
        gap: 12px; 
        margin-bottom: 20px; 
        width: 100%;
        max-width: 300px;
    }
    .btn { 
        font-size: 1rem; 
        padding: 12px 20px; 
        width: 100%; 
        text-align: center;
    }
}
@media (min-width: 601px) {
    .hero-stats { display: flex; flex-direction: row; gap: 40px; margin-top: 30px; justify-content: center; }
    .stat-item { text-align: center; min-width: 120px; }
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: #1d8cf2;
        text-shadow: 0 2px 8px #2563eb33, 0 1px 2px #0002;
    }
    .stat-label {
        color: #1d8cf2;
        font-size: 1rem;
        text-shadow: 0 1px 4px #2563eb22;
    }
    .hero-stats-row { display: flex; flex-direction: row; gap: 0; width: auto; }
}
@media (max-width: 600px) {
    .nav-container { flex-direction: row; height: 54px; padding: 0 8px; }
    .nav-logo { font-size: 0.9rem; gap: 5px; }
    .nav-logo i { font-size: 1rem; }
    .nav-logo span { font-size: 0.9rem; }
    .hamburger { width: 28px; height: 28px; }
    .navbar.open .nav-menu {
        background: rgba(30, 41, 59, 0.85);
        gap: 18px;
    }
    .nav-link.nav-anim {
        font-size: 1.08rem;
        padding: 8px 0;
        letter-spacing: 0.01em;
    }
    .container { padding: 0 8px; }
    .services-grid, .gallery-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }
    .service-card, .gallery-item, .gallery-placeholder, .faq-item, .contact-form, .contact-info {
        width: 94vw;
        max-width: 360px;
        margin: 0 auto 24px auto;
        border-radius: 16px;
        box-sizing: border-box;
    }
    .service-card, .gallery-placeholder {
        min-height: 120px;
        padding: 10px 6px 14px 6px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        box-shadow: 0 2px 12px #2563eb11;
    }
    .service-card h3, .gallery-placeholder h4 { font-size: 0.98rem; margin-bottom: 6px; }
    .service-card p, .service-features, .service-features li, .gallery-placeholder p { font-size: 0.91rem; }
    .service-icon, .gallery-placeholder i { font-size: 1.5rem; margin-bottom: 7px; }
    .service-price { font-size: 0.95rem; margin: 7px 0; }
    .btn { font-size: 0.93rem; padding: 8px 0; width: 100%; }
    .service-badge { font-size: 0.78rem; top: 7px; right: 7px; }
    .faq-item { padding: 0; }
    .faq-question { font-size: 0.98rem; padding: 14px 12px; }
    .faq-answer { font-size: 0.93rem; padding: 0 12px 12px 12px; }
    .contact-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 16px;
    }
    
    .contact-info-full {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    
    .contact-info-item {
        padding: 20px 18px;
    }
    
    .contact-info-item i {
        font-size: 1.5rem;
        min-width: 35px;
    }
    
    .contact-info-item h4 {
        font-size: 1rem;
    }
    
    .contact-info-item p {
        font-size: 0.95rem;
    }
    
    .contact-buttons {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .btn-large {
        width: auto;
        padding: 12px 20px;
        font-size: 0.95rem;
        flex: 0 1 auto;
    }
    .footer-content { 
        flex-direction: column; 
        gap: 20px; 
        align-items: center; 
        text-align: center;
        padding: 0 16px;
    }
    .footer-links { 
        gap: 16px; 
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-links a {
        font-size: 0.95rem;
    }
    .faq-section { 
        padding: 0 16px; 
        max-width: 100%;
    }
    .faq-item {
        margin-bottom: 16px;
    }
    .faq-question {
        font-size: 1.1rem;
        padding: 16px 20px;
    }
    .faq-answer {
        font-size: 1rem;
        padding: 0 20px 16px 20px;
    }
    #scrollToTopBtn { 
        right: 16px; 
        bottom: 16px; 
        width: 48px; 
        height: 48px; 
        font-size: 1.3rem; 
    }
    .hero-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 18px;
    }
    .hero-stats-row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        width: 100%;
    }
    .stat-item {
        text-align: center;
        min-width: 90px;
    }
    .stat-number { font-size: 1.1rem; }
    .stat-label { font-size: 0.95rem; }
} 
/* Mobil hamburger menü animasyonu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 120;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.hamburger .bar {
    width: 100%;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.39,.575,.565,1.000);
}
.navbar.open .hamburger .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.navbar.open .hamburger .bar:nth-child(2) {
    opacity: 0;
}
.navbar.open .hamburger .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
/* Mobil menü overlay */
.navbar.open .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 41, 59, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 110;
    width: 100vw;
    height: 100vh;
    transition: all 0.3s;
    opacity: 1;
    pointer-events: all;
    box-shadow: 0 8px 32px #0002;
}
.navbar .nav-menu {
    transition: all 0.3s;
}
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-menu {
        display: none;
    }
    .navbar.open .nav-menu {
        display: flex;
    }
    .nav-link.nav-anim {
        font-size: 1.3rem;
        color: #fff;
        background: none;
        box-shadow: none;
        border-radius: 0;
        padding: 12px 0;
        transition: color 0.2s, background 0.2s;
        opacity: 0;
        transform: translateY(30px);
        animation: mobileMenuFadeIn 0.4s forwards;
    }
    .navbar.open .nav-link.nav-anim {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes mobileMenuFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Detaylı Bilgi Bölümü (SEO) */
.info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(37,99,235,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(37,99,235,0.15);
    border-color: #2563eb;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

.info-icon i {
    font-size: 2rem;
    color: #fff;
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    text-align: center;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    text-align: left;
}

.info-card strong {
    color: #2563eb;
    font-weight: 600;
}

.info-cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(37,99,235,0.3);
}

.info-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.info-cta p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-cta-buttons .btn {
    background: white;
    color: #2563eb;
    font-weight: 600;
    padding: 14px 30px;
    font-size: 1.1rem;
}

.info-cta-buttons .btn:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.info-cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.info-cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}

@media (max-width: 768px) {
    .info-section {
        padding: 50px 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .info-card p {
        font-size: 1rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-icon i {
        font-size: 1.7rem;
    }
    
    .info-cta {
        padding: 35px 25px;
        border-radius: 20px;
        margin: 0 16px;
    }
    
    .info-cta h3 {
        font-size: 1.5rem;
    }
    
    .info-cta p {
        font-size: 1rem;
    }
    
    .info-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .info-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Yukarı çık butonu */
#scrollToTopBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 18px #2563eb33;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
    z-index: 200;
}
#scrollToTopBtn.show {
    opacity: 1;
    pointer-events: all;
    transform: scale(1.08);
}
#scrollToTopBtn:hover {
    background: #1d4ed8;
    transform: scale(1.15);
}
/* SSS (akordeon) */
.faq-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 16px;
}
.faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px #2563eb11;
    margin-bottom: 18px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-question {
    padding: 20px 24px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2563eb;
    cursor: pointer;
    background: #f1f5f9;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}
.faq-question:hover {
    background: #e0e7ef;
}
.faq-answer {
    padding: 0 24px 18px 24px;
    font-size: 1.05rem;
    color: #222;
    display: none;
    animation: fadeIn 0.5s;
}
.faq-item.open .faq-answer {
    display: block;
} 
/* Sadece popüler kartta mavi border */
.service-card.popular {
    border: 2px solid #2563eb !important;
}
.service-card {
    border: none !important;
}
@media (max-width: 600px) {
    .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        padding: 0 16px;
    }
    .service-card {
        width: 100%;
        max-width: 360px;
        margin: 0;
        padding: 24px 20px;
        border-radius: 16px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        box-shadow: 0 4px 20px rgba(37,99,235,0.1);
        min-height: auto;
        text-align: center;
    }
    .service-card h3 { 
        font-size: 1.2rem; 
        margin-bottom: 12px; 
        color: #1f2937;
        font-weight: 600;
    }
    .service-card p { 
        font-size: 1rem; 
        margin-bottom: 16px;
        color: #6b7280;
        line-height: 1.5;
    }
    .service-features { 
        margin-bottom: 20px; 
        width: 100%;
    }
    .service-features li { 
        font-size: 0.95rem; 
        margin-bottom: 8px;
        justify-content: flex-start;
    }
    .service-icon { 
        width: 70px;
        height: 70px;
        font-size: 2rem; 
        margin: 0 auto 16px auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .service-price { 
        font-size: 1.1rem; 
        margin: 16px 0; 
        font-weight: 700;
    }
    .service-card .btn { 
        font-size: 1rem; 
        padding: 12px 24px; 
        width: 100%; 
        max-width: 200px;
    }
    .service-badge { 
        font-size: 0.85rem; 
        top: 12px; 
        right: 12px; 
        padding: 6px 12px;
    }
    
    /* Mobil galeri düzeltmeleri */
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }
    
    .gallery-item {
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .gallery-placeholder {
        width: 100%;
        min-height: 150px;
        padding: 20px;
        border-radius: 12px;
    }
    
    .gallery-placeholder i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .gallery-placeholder h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .gallery-placeholder p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Galeri row'ları mobilde tek sütun */
    .gallery-row, .gallery-row.reverse {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .gallery-img {
        width: 100%;
        height: 200px;
    }
    
    .gallery-desc {
        padding: 15px 0;
    }
    
    .gallery-desc h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .gallery-desc p {
        font-size: 1rem;
    }
    
    /* Hamburger menü mobilde düzgün çalışması için */
    .navbar .nav-menu {
        display: none;
    }
    .navbar.open .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 90vw;
        max-width: 300px;
        background: #1e293b;
        z-index: 120;
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        border-radius: 16px;
        padding: 20px 0;
        align-items: center;
        gap: 8px;
        animation: fadeInMenuBox 0.3s ease-out;
    }
    .nav-link.nav-anim {
        font-size: 1rem;
        padding: 12px 20px;
        width: 90%;
        text-align: center;
        color: #fff;
        border-radius: 10px;
        background: transparent;
        transition: background 0.2s, color 0.2s;
        font-weight: 500;
    }
    .nav-link.nav-anim:hover, .nav-link.nav-anim.active {
        background: #2563eb;
        color: #fff;
    }
    /* Galeri kutuları mobilde daha büyük ve düzenli */
    .gallery-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        padding: 0 16px;
    }
    .gallery-item {
        width: 100%;
        max-width: 360px;
        margin: 0;
    }
    .gallery-image {
        width: 100%;
        height: 250px;
        margin: 0;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .gallery-overlay {
        padding: 20px 15px 15px 15px;
    }
    
    .gallery-overlay h4 { 
        font-size: 1.1rem; 
        margin-bottom: 6px; 
        font-weight: 600;
    }
    
    .gallery-overlay p { 
        font-size: 0.9rem; 
        line-height: 1.3;
    }
    .gallery-placeholder i { font-size: 1.4rem; margin-bottom: 7px; }
    .gallery-placeholder h4 { font-size: 0.97rem; margin-bottom: 5px; }
    .gallery-placeholder p { font-size: 0.91rem; }
}
/* Modern fade-in ve slide animasyonları */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes popIn {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.fade-in-up { animation: fadeInUp 1.1s cubic-bezier(.39,.575,.565,1.000) both; }
.fade-in-left { animation: fadeInLeft 1.1s cubic-bezier(.39,.575,.565,1.000) both; }
.fade-in-right { animation: fadeInRight 1.1s cubic-bezier(.39,.575,.565,1.000) both; }
.pop-in { animation: popIn 0.8s cubic-bezier(.39,.575,.565,1.000) both; }

/* Galeri özel düzeni */
.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
}
.gallery-row.reverse { flex-direction: row-reverse; }
.gallery-img {
  flex: 1 1 320px;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 8px 32px #2563eb22;
  overflow: hidden;
  margin: 0 18px;
  animation: fadeInLeft 1.1s;
}
.gallery-desc {
  flex: 1 1 320px;
  min-width: 220px;
  font-size: 1.15rem;
  color: #1d4ed8;
  font-weight: 600;
  padding: 18px 0;
  animation: fadeInRight 1.1s;
}
@media (max-width: 900px) {
  .gallery-row, .gallery-row.reverse { flex-direction: column !important; gap: 18px; }
  .gallery-img, .gallery-desc { max-width: 98vw; }
}

/* Yamaç Paraşütü Bilgilendirme Bölümü */
.paragliding-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card-main {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(37,99,235,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(37,99,235,0.2);
    border-color: #2563eb;
}

.info-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

.info-card-icon.success {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 6px 20px rgba(16,185,129,0.3);
}

.info-card-icon.danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 6px 20px rgba(239,68,68,0.3);
}

.info-card-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.info-card-main h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.info-card-main p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.6;
}

.info-list li i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-list.danger-list li i {
    color: #ef4444;
}

.info-list li strong {
    color: #1f2937;
    font-weight: 600;
}

.info-note {
    background: #f0f9ff;
    border-left: 4px solid #2563eb;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 1rem;
    color: #1e40af;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-note i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-note.warning {
    background: #fef3c7;
    border-left-color: #f59e0b;
    color: #92400e;
}

.info-note strong {
    font-weight: 700;
}

.info-cta-box {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 50px rgba(37,99,235,0.3);
    margin-top: 20px;
}

.info-cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.info-cta-box p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: white;
    color: #2563eb;
    font-weight: 600;
    padding: 14px 30px;
    font-size: 1.1rem;
}

.cta-buttons .btn:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .paragliding-info {
        padding: 50px 0;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 16px;
    }
    
    .info-card-main {
        padding: 30px 20px;
    }
    
    .info-card-main h3 {
        font-size: 1.3rem;
    }
    
    .info-card-main p {
        font-size: 1rem;
    }
    
    .info-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .info-card-icon i {
        font-size: 2rem;
    }
    
    .info-list li {
        font-size: 0.95rem;
    }
    
    .info-note {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .info-cta-box {
        padding: 35px 25px;
        border-radius: 20px;
        margin: 20px 16px 0 16px;
    }
    
    .info-cta-box h3 {
        font-size: 1.5rem;
    }
    
    .info-cta-box p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
} 