/* AirportRoyalAssist.live - Luxury Styles */

:root {
    --royal-gold: #D4AF37;
    --black: #000000;
    --charcoal: #1a1a1a;
    --charcoal-light: #2a2a2a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    font-size: 1.5rem;
    color: var(--royal-gold);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--royal-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--royal-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--royal-gold);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.5));
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray-light);
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-gold), #b8941f);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--royal-gold);
    border-color: var(--royal-gold);
}

.btn-outline:hover {
    background: var(--royal-gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--royal-gold);
}

/* Services Section */
.services {
    background: var(--charcoal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--charcoal-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--royal-gold);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--royal-gold);
}

.service-link {
    color: var(--royal-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    text-shadow: 0 0 10px var(--royal-gold);
}

/* Credit Benefits Section */
.credit-benefits {
    background: var(--black);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--royal-gold);
    font-weight: bold;
}

.benefits-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-gold);
}

/* Lounge Comparison */
.lounge-comparison {
    background: var(--charcoal);
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.comparison-card {
    background: var(--charcoal-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.comparison-card.featured {
    border-color: var(--royal-gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.comparison-card:hover {
    transform: translateY(-5px);
    border-color: var(--royal-gold);
}

.comparison-card h3 {
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.comparison-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.comparison-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Concierge Plans */
.concierge-plans {
    background: var(--black);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--charcoal-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.plan-card.premium {
    border-color: var(--royal-gold);
    box-shadow: var(--shadow-gold);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--royal-gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--royal-gold);
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--royal-gold);
    margin: 1rem 0;
}

.plan-price span {
    font-size: 1rem;
    color: var(--white);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Testimonials */
.testimonials {
    background: var(--charcoal);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--charcoal-light);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--royal-gold);
}

.testimonial-author span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* FAQ */
.faq {
    background: var(--black);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--charcoal);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--royal-gold);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--royal-gold);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 0 0 0 0;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 0 1.5rem 0;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 3rem 0 1rem;
}

.footer-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
    margin-bottom: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--royal-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--charcoal);
    color: var(--gray-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--black);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .benefits-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comparison-card.featured {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        padding: 1rem 15px;
    }

    section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}
/* Base styles for better text visibility */
body {
    color: #1e293b;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #1e293b;
}

p {
    color: #475569;
}

/* Credit Card Specific Styles */
.special-offers {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

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

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-bonus {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.offer-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.offer-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.offer-card ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.offer-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

/* Enhanced service cards for credit card features */
.service-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #1e293b;
}

.service-card h3 {
    color: #1e293b;
    font-weight: 600;
}

.service-card p {
    color: #475569;
}

.service-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Credit card comparison enhancements */
.comparison-card {
    background: white;
    color: #1e293b;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.comparison-card h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 20px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card ul li {
    color: #475569;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.comparison-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.comparison-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
    border: 3px solid #ffd700;
}

.comparison-card.featured h3 {
    color: white;
}

.comparison-card.featured ul li {
    color: rgba(255, 255, 255, 0.9);
}

.comparison-card.featured ul li:before {
    color: #ffd700;
}

.comparison-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: #4ade80;
    margin: 20px 0;
}

.comparison-card.featured .price {
    color: #ffd700;
}

/* Plan cards for credit card categories */
.plan-card {
    background: white;
    color: #1e293b;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.plan-card h3 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
}

.plan-features li {
    color: #475569;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.plan-card.premium {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border: 2px solid #ffd700;
}

.plan-card.premium h3 {
    color: white;
}

.plan-card.premium .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

.plan-card.premium .plan-features li:before {
    color: #ffd700;
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ffd700, #f59e0b);
    color: #1e293b;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
}

.plan-price {
    font-size: 2rem;
    color: #4ade80;
    font-weight: 800;
    margin: 20px 0;
}

.plan-card.premium .plan-price {
    color: #ffd700;
}

/* Additional styles for rewards and compare pages */
.rewards-showcase,
.comparison-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.reward-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #1e293b;
}

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

.reward-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 3px solid #ffd700;
}

.reward-card h3 {
    color: #1e293b;
    font-weight: 600;
}

.reward-card.featured h3 {
    color: white;
}

.reward-bonus {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ade80;
    margin: 20px 0;
    text-align: center;
}

.reward-card.featured .reward-bonus {
    color: #ffd700;
}

.reward-features ul {
    list-style: none;
    padding: 0;
}

.reward-features li {
    color: #475569;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.reward-card.featured .reward-features li {
    color: rgba(255, 255, 255, 0.9);
}

.reward-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.reward-card.featured .reward-features li:before {
    color: #ffd700;
}

.card-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffd700;
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .offers-grid,
    .rewards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-bonus,
    .reward-bonus {
        font-size: 2rem;
    }
    
    .offer-card,
    .reward-card {
        padding: 20px;
    }
}

/* Credit card themed animations */
@keyframes cardFlip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(0deg); }
}

.service-card:hover .service-icon {
    animation: cardFlip 0.6s ease-in-out;
}

/* Section titles */
.section-title {
    color: #1e293b;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

/* Benefits list styling */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    color: #475569;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

/* Container text colors */
.container p {
    color: #475569;
}

.benefits-text h2 {
    color: #1e293b;
}

.benefits-text p {
    color: #475569;
}

/* Enhanced buttons for credit card theme */
.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    color: white;
}

.btn-secondary {
    background: linear-gradient(45deg, #4ade80, #22c55e);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.6);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}