/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc3545;
    --primary-dark: #c82333;
    --secondary-color: #0066cc;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f5f7fa;
}

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

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #0f1419;
}

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

.logo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    background: transparent;
    padding: 0;
    position: relative;
}

.logo-img {
    height: auto;
    width: auto;
    max-height: 110px;
    object-fit: contain;
    display: block;
}

.logo-subtitle {
    position: absolute;
    left: 0;
    top: 68%;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
    font-family: 'Arial', 'Helvetica', sans-serif;
    white-space: nowrap;
    margin-top: 2px;
}

/* Text logo styles - commented out (keeping for reference)
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    height: auto;
}

.logo-f {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 400;
    color: #aaa;
    margin-left: 5px;
}
*/

/* Logo Preview Section */
.logo-preview-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #e9ecef;
}

.logo-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-preview-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo-preview-box h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.original-logo-preview {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

/* Styled Text Logo */
.styled-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    text-align: left;
}

.styled-logo-f {
    font-size: 5.5rem;
    font-weight: 900;
    color: #dc3545;
    line-height: 0.9;
    font-family: 'Arial', 'Helvetica', sans-serif;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
    margin-top: -8px;
    position: relative;
    letter-spacing: -2px;
}

.styled-logo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.styled-logo-main {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: -1px;
}

.styled-logo-i {
    position: relative;
    display: inline-block;
}

.styled-logo-i::before {
    content: '•';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: #dc3545;
    font-size: 1.2rem;
}

.styled-logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: #495057;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    padding: 4rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '✈';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    right: -5rem;
    top: -5rem;
    transform: rotate(-15deg);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    font-weight: 300;
}

/* Flight Search Widget */
.flight-search {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.search-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.search-input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.search-btn {
    grid-column: span 1;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Flight Services Section */
.flight-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.service-highlight {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 3px solid transparent;
}

.service-highlight:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-highlight.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.service-highlight.featured h3,
.service-highlight.featured p,
.service-highlight.featured li {
    color: var(--white);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffc107;
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-highlight h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.service-highlight p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-highlight ul {
    list-style: none;
    text-align: left;
}

.service-highlight ul li {
    padding: 0.8rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-highlight ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-highlight.featured ul li::before {
    color: #ffc107;
}

/* Other Services Section */
.other-services {
    padding: 5rem 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '✈';
    position: absolute;
    font-size: 15rem;
    opacity: 0.03;
    right: -3rem;
    top: -3rem;
    transform: rotate(-15deg);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

/* Content Section */
.content {
    padding: 4rem 0;
    background-color: var(--white);
}

.content h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* About Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Directors Section */
.directors-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.director-card {
    text-align: center;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.director-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.director-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.director-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--white);
    object-position: center center;
}

.director-photo-center {
    object-position: center 30%;
}

.director-name {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.director-role {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.director-email {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

.values-list {
    list-style: none;
    margin-top: 2rem;
}

.values-list li {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.values-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 5px solid var(--primary-color);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-card ul {
    margin-top: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.service-card ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-hours {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-hours h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
}

.contact-hours table {
    width: 100%;
    border-collapse: collapse;
}

.contact-hours td {
    padding: 1.2rem;
    border-bottom: 1px solid #e9ecef;
}

.contact-hours td:first-child {
    font-weight: 700;
    color: var(--text-dark);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.footer-bottom p {
    color: #aaa;
    margin-bottom: 0.5rem;
}

.cin {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .logo-img {
        max-height: 85px;
    }

    .logo-subtitle {
        font-size: 0.55rem;
        letter-spacing: 1px;
        top: 75%;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .flight-search {
        padding: 1.5rem;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .search-btn {
        grid-column: span 1;
        width: 100%;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .benefits-grid,
    .services-showcase,
    .services-grid,
    .contact-info,
    .directors-grid {
        grid-template-columns: 1fr;
    }

    .logo-preview-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .styled-logo {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .styled-logo-f {
        font-size: 4rem;
    }

    .styled-logo-main {
        font-size: 2.5rem;
    }

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