/* Baggage Page Styles */
:root {
    --primary-dark: #0f1235;
    --primary-blue: #1a1f4e;
    --accent-yellow: #f5b800;
    --accent-yellow-hover: #e6ac00;
    --text-dark: #1a1a2e;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-light: #e5e7eb;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}

.baggage-page {
    background: var(--bg-white);
    min-height: 100vh;
}

/* Hero Section */
.baggage-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, #2d3561 100%);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.baggage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.baggage-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg-white);
    border-radius: 50% 50% 0 0;
    transform: scaleX(1.5);
}

.baggage-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 184, 0, 0.15);
    border: 1px solid rgba(245, 184, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--accent-yellow);
}

.hero-badge span {
    color: var(--accent-yellow);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    color: var(--bg-white);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title span {
    color: var(--accent-yellow);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Content Section */
.baggage-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.info-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.6s ease both;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-yellow);
}

.info-card-title {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-card-text {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Table Section */
.table-section {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.table-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.table-header-content h2 {
    color: var(--bg-white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.table-header-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.table-legend {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.included { background: #10b981; }
.legend-dot.paid { background: var(--accent-yellow); }

.table-container {
    overflow-x: auto;
}

.baggage-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.baggage-table thead th {
    background: var(--bg-light);
    padding: 18px 24px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-light);
}

.baggage-table thead th:first-child { padding-left: 32px; }
.baggage-table thead th:last-child { padding-right: 32px; }

.baggage-table tbody tr {
    transition: all var(--transition-fast);
}

.baggage-table tbody tr:hover {
    background: var(--bg-light);
}

.baggage-table tbody tr:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

.baggage-table tbody td {
    padding: 20px 24px;
    font-size: 15px;
    color: var(--text-dark);
    vertical-align: middle;
}

.baggage-table tbody td:first-child { padding-left: 32px; }
.baggage-table tbody td:last-child { padding-right: 32px; }

.airline-cell {
    display: flex;
    align-items: center;
    gap: 16px;
}

.airline-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.airline-logo.georgian { background: linear-gradient(135deg, #c8102e 50%, #f5f5f5 50%); color: #fff; }
.airline-logo.wizz { background: #e91e8c; color: #fff; }
.airline-logo.turkish { background: #c8102e; color: #fff; }
.airline-logo.pegasus { background: #ffc72c; color: #1a1a2e; }
.airline-logo.flydubai { background: #f26522; color: #fff; }
.airline-logo.ryanair { background: #073590; color: #f1c933; }
.airline-logo.lufthansa { background: #05164d; color: #f5c400; }

.airline-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.airline-info span {
    font-size: 13px;
    color: var(--text-light);
}

.baggage-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.baggage-weight {
    font-weight: 600;
    color: var(--text-dark);
}

.baggage-size {
    font-size: 13px;
    color: var(--text-light);
}

.price-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-main {
    font-weight: 600;
    color: var(--text-dark);
}

.price-note {
    font-size: 12px;
    color: var(--text-light);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.status-paid {
    background: rgba(245, 184, 0, 0.15);
    color: #b45309;
}

/* FAQ Section */
.faq-section {
    animation: fadeInUp 0.6s ease 0.5s both;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-header p {
    color: var(--text-gray);
    font-size: 16px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: background var(--transition-fast);
    font-family: inherit;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent-yellow);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.faq-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--text-gray);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-toggle {
    background: var(--accent-yellow);
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
    color: var(--primary-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px;
    padding-left: 84px;
}

.faq-answer-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.faq-answer-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 50%;
}

.faq-answer-content ul li:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    border-radius: var(--radius-xl);
    padding: 48px;
    margin-top: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 184, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    color: var(--bg-white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 28px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(245, 184, 0, 0.3);
}

.cta-button:hover {
    background: var(--accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 184, 0, 0.4);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .baggage-hero { padding: 60px 0 100px; }
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 16px; }
    .table-header { padding: 24px; }
    .table-header-content h2 { font-size: 20px; }
    .baggage-table thead th, .baggage-table tbody td { padding: 16px; }
    .baggage-table thead th:first-child, .baggage-table tbody td:first-child { padding-left: 20px; }
    .airline-cell { gap: 12px; }
    .airline-logo { width: 40px; height: 40px; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-answer-content { padding-left: 24px; }
    .cta-section { padding: 32px 24px; }
    .cta-content h3 { font-size: 22px; }
}

@media (max-width: 480px) {
    .info-cards { grid-template-columns: 1fr; }
    .faq-question-content { gap: 12px; }
    .faq-icon { width: 36px; height: 36px; }
    .faq-icon svg { width: 18px; height: 18px; }
}