/* Ticket Status Page Specific Styles */

/* Hero Banner - Sıfırdan Yazıldı */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(108, 123, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 211, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(108, 123, 255, 0.05) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px, 400px 400px;
    animation: patternFloat 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 123, 255, 0.08) 0%, rgba(0, 211, 255, 0.08) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left {
    color: var(--text);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #0b1020;
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: slideInLeft 1s ease-out;
    box-shadow: 0 4px 15px rgba(0, 211, 255, 0.25);
}

.hero-badge i {
    color: #ffd700;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: slideInLeft 1s ease-out 0.2s both;
    color: #fff;
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(45deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
    animation: slideInLeft 1s ease-out 0.4s both;
    color: var(--muted);
}

.hero-stats {
    display: flex;
    gap: 30px;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    color: var(--muted);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.8s both;
}

.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.phone-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 211, 255, 0.25);
    animation: phonePulse 3s ease-in-out infinite;
}

.phone-circle i {
    font-size: 4rem;
    color: #fff;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(231, 76, 60, 0.3);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.float-item i {
    font-size: 1.5rem;
    color: #fff;
}

.float-item:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 2s;
}

.float-item:nth-child(3) {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

/* Hero Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes phonePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes patternFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Airline Categories Section */
.airline-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(11,16,32,0.5) 0%, rgba(17,23,43,0.5) 100%);
    position: relative;
    backdrop-filter: blur(10px);
}

.airline-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e74c3c' fill-opacity='0.02'%3E%3Cpath d='M50 50c0 27.614-22.386 50-50 50s-50-22.386-50-50 22.386-50 50-50 50 22.386 50 50z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.category-section {
    margin-bottom: 80px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.category-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.category-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.category-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.operation-card {
    background: linear-gradient(135deg, #121a33 0%, #0f172a 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.operation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.operation-card:hover::before {
    transform: scaleX(1);
}

.operation-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-header {
    padding: 30px 30px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(108, 123, 255, 0.06) 0%, rgba(0, 211, 255, 0.06) 100%);
}

.airline-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 211, 255, 0.25);
    transition: all 0.3s ease;
}

.operation-card:hover .airline-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.airline-logo i {
    font-size: 1.8rem;
    color: #fff;
}

.operation-title h3 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.operation-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
}

.card-body {
    padding: 25px 30px 30px;
}

.phone-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(108, 123, 255, 0.06) 0%, rgba(0, 211, 255, 0.06) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.phone-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.phone-info {
    flex: 1;
}

.phone-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.phone-number {
    font-size: 1.4rem;
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: var(--accent);
    transform: scale(1.05);
}

.call-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
    color: #0b1020;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 211, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.call-btn:hover::before {
    left: 100%;
}

.call-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 211, 255, 0.35);
}

.call-btn i {
    font-size: 1.1rem;
}

/* Fixed Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
    color: #0b1020;
    padding: 18px 0;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    border-top: 3px solid rgba(255,255,255,0.2);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-left i {
    color: #e74c3c;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.phone-number {
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-center {
    text-align: center;
    font-size: 0.95rem;
}

.call-btn {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #e74c3c;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.call-btn:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
    color: #0b1020;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 211, 255, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title .highlight {
        font-size: 3.5rem;
    }
    
    .hero-visual {
        width: 350px;
        height: 350px;
    }
    
    .operations-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
        max-width: 1000px;
    }
    
    .category-header h2 {
        font-size: 2.2rem;
    }
    
    .footer .container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer .call-btn {
        justify-self: center;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        min-height: 80vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-title .highlight {
        font-size: 3.2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        width: 300px;
        height: 300px;
    }
    
    .airline-categories {
        padding: 60px 0;
    }
    
    .category-section {
        margin-bottom: 60px;
    }
    
    .category-header {
        margin-bottom: 40px;
    }
    
    .category-header h2 {
        font-size: 2rem;
    }
    
    .operations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-title .highlight {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-visual {
        width: 250px;
        height: 250px;
    }
    
    .phone-circle {
        width: 150px;
        height: 150px;
    }
    
    .phone-circle i {
        font-size: 3rem;
    }
    
    .float-item {
        width: 50px;
        height: 50px;
    }
    
    .float-item i {
        font-size: 1.2rem;
    }
    
    .airline-categories {
        padding: 40px 0;
    }
    
    .category-section {
        margin-bottom: 40px;
    }
    
    .category-header {
        margin-bottom: 30px;
    }
    
    .category-header h2 {
        font-size: 1.8rem;
    }
    
    .category-header p {
        font-size: 1rem;
    }
    
    .operations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 20px;
        max-width: none;
    }
    
    .operation-card {
        border-radius: 15px;
    }
    
    .card-header {
        padding: 25px 25px 15px;
        gap: 15px;
    }
    
    .airline-logo {
        width: 50px;
        height: 50px;
    }
    
    .airline-logo i {
        font-size: 1.5rem;
    }
    
    .operation-title h3 {
        font-size: 1.1rem;
    }
    
    .operation-subtitle {
        font-size: 0.85rem;
    }
    
    .card-body {
        padding: 20px 25px 25px;
    }
    
    .phone-section {
        padding: 15px;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .phone-icon {
        width: 45px;
        height: 45px;
    }
    
    .phone-icon i {
        font-size: 1.2rem;
    }
    
    .phone-number {
        font-size: 1.2rem;
    }
    
    .call-btn {
        padding: 14px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer .container {
        gap: 15px;
    }
    
    .footer-left {
        font-size: 1rem;
    }
    
    .footer-center {
        font-size: 0.9rem;
    }
    
    .footer .call-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .highlight {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-visual {
        width: 200px;
        height: 200px;
    }
    
    .phone-circle {
        width: 120px;
        height: 120px;
    }
    
    .phone-circle i {
        font-size: 2.5rem;
    }
    
    .float-item {
        width: 40px;
        height: 40px;
    }
    
    .float-item i {
        font-size: 1rem;
    }
    
    .category-header h2 {
        font-size: 1.6rem;
    }
    
    .category-header p {
        font-size: 0.95rem;
    }
    
    .operations-grid {
        margin: 0 15px;
        gap: 18px;
    }
    
    .card-header {
        padding: 20px 20px 12px;
        gap: 12px;
    }
    
    .airline-logo {
        width: 45px;
        height: 45px;
    }
    
    .airline-logo i {
        font-size: 1.3rem;
    }
    
    .operation-title h3 {
        font-size: 1rem;
    }
    
    .operation-subtitle {
        font-size: 0.8rem;
    }
    
    .card-body {
        padding: 18px 20px 22px;
    }
    
    .phone-section {
        padding: 12px;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .phone-icon {
        width: 40px;
        height: 40px;
    }
    
    .phone-icon i {
        font-size: 1.1rem;
    }
    
    .phone-label {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
    
    .call-btn {
        padding: 12px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .footer {
        padding: 25px 0;
    }
    
    .footer-left {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .footer-left i {
        font-size: 1.1rem;
    }
    
    .footer-center {
        font-size: 0.85rem;
    }
    
    .footer .call-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
        right: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-title .highlight {
        font-size: 2.2rem;
    }
    
    .hero-visual {
        width: 180px;
        height: 180px;
    }
    
    .phone-circle {
        width: 100px;
        height: 100px;
    }
    
    .phone-circle i {
        font-size: 2rem;
    }
    
    .operations-grid {
        margin: 0 10px;
    }
    
    .airline-logo {
        width: 40px;
        height: 40px;
    }
    
    .airline-logo i {
        font-size: 1.2rem;
    }
    
    .operation-title h3 {
        font-size: 0.95rem;
    }
    
    .phone-section {
        padding: 10px;
    }
    
    .phone-icon {
        width: 35px;
        height: 35px;
    }
    
    .phone-icon i {
        font-size: 1rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .footer-left {
        font-size: 0.85rem;
    }
    
    .footer-center {
        font-size: 0.8rem;
    }
    
    .footer .call-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .operation-card {
        border-width: 0.5px;
    }
}

/* Print styles */
@media print {
    .scroll-to-top,
    .call-btn {
        display: none !important;
    }
    
    .operation-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* --- Pegasus Info Section Enhancements --- */
.pegasus-info-section{padding:48px 0;background:#ffffff}
.pegasus-info-section .container{width:min(980px,92%);margin:0 auto}
.pegasus-info-section h2{margin:0 0 10px;font-size:36px;line-height:1.2;color:var(--brand)}
.pegasus-info-section h3{margin:26px 0 12px;font-size:22px;line-height:1.3;color:#0f172a;position:relative;padding-bottom:8px}
.pegasus-info-section h3::after{content:"";position:absolute;left:0;bottom:0;width:72px;height:3px;background:var(--brand-100)}
.pegasus-info-section p{margin:0 0 14px;color:#1f2937;line-height:1.9}
.pegasus-info-section p strong{color:#0f172a}

@media (max-width: 960px){
  .pegasus-info-section{padding:32px 0}
  .pegasus-info-section h2{font-size:28px}
  .pegasus-info-section h3{font-size:20px}
}