    .hero {
    position: relative;
    padding: 140px 60px 100px;
    text-align: center;
    color: #fff;
}

/* VIDEO */
.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -2;
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    top: 0;
    left: 0;
    z-index: -1;
}

/* TEXT */
.hero h1 {
    font-size: 37px;
    font-weight: 600;
}

/* SEARCH BOX */
.search-box {
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 25px;
    max-width: 1200px;
    margin: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* TRIP TYPE */
.trip-type {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.trip-type label {
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
}

.trip-type .active {
    background: #2ecc71;
}

/* FORM */
.form-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* FIELD */
.field {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    flex: 1;
    text-align: left;
}

.field span {
    font-size: 11px;
    color: #888;
}

.field input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
}

/* SWAP ICON */
.swap {
    background: #2ecc71;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* DISABLED */
.disabled-field {
    opacity: 0.8;
    pointer-events: none;
}

/* BUTTON */
.search-btn {
    background: #2ecc71;
    color: #fff;
    border: none;
    padding:25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.hero-content {
  margin: 0 auto;
  width: 73%;
  margin-bottom: 40px;
}

.search-btn:hover {
    background: #27ae60;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .form-row {
        flex-direction: column;
    }

    .hero h1 {
    font-size: 24px;
  }
  .hero p {
  font-size: 13px;
}
     .hero {
    padding: 48px 20px 59px;
}
.hero-content {
  width: 100%;
}
.swap {
  background: #2ecc71;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  top: 41px;
  right: 28px;
}
.field {
  width: 100%;
  padding: 5px 10px;
}
.search-btn {
  padding: 13px;
  font-size: 16px;
  text-transform: uppercase;
  width: 100%;
}
.form-row {
  position: relative;
}

}

.usp-bar {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* ITEM */
.usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 10px 15px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    backdrop-filter: blur(8px);
    transition: 0.3s;
}

/* ICON */
.usp-item i {
    color: #2ecc71;
}

/* HOVER */
.usp-item:hover {
    background: #2ecc71;
    color: #fff;
}

.usp-item:hover i {
    color: #fff;
}


/* ===== DESTINATION SECTION (SAFE PREFIX: gtt-) ===== */

.gtt-destinations {
    padding: 70px 40px;
    background: #f8f9fb;
}

.gtt-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.gtt-title {
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: 600;
}

.gtt-subtitle {
    color: #777;
    margin-bottom: 40px;
    font-size: 15px;
}

/* GRID */
.gtt-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gtt-dest-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    display:block;
    text-decoration:none;
}

/* IMAGE */
.gtt-dest-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* OVERLAY */
.gtt-dest-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    text-align: left;
}

.gtt-dest-overlay h3 {
    font-size: 17px;
    margin: 0;
}

.gtt-dest-overlay span {
    font-size: 13px;
    color: #2ecc71;
}

/* HOVER */
.gtt-dest-card:hover img {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gtt-dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gtt-dest-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== TRUST SECTION ===== */

/* ===== TRUST SECTION PARALLAX ===== */

.gtt-trust {
    position: relative;
    padding: 80px 20px;

    /* PARALLAX IMAGE */
    background-image: url("../../bannerpra.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* DARK OVERLAY */
.gtt-trust::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

/* CONTENT ABOVE OVERLAY */
.gtt-trust-container {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* TEXT COLOR FIX */
.gtt-trust-title {
    color: #fff;
    text-align: center;
  font-size: 33px;
}

.gtt-trust-box p {
    color: #ddd;
}


/* GRID */
.gtt-trust-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* BOX */
.gtt-trust-box {
    text-align: center;
}

/* RATING */
.gtt-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.gtt-rating h3 {
    font-size: 40px;
    font-weight: 600;
    
}

/* STARS */
.gtt-stars {
    color: #f39c12;
    font-size: 18px;
}

.gtt-trust-box i {
    margin-right: 5px;
}

/* HOVER EFFECT */
.gtt-trust-box:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .gtt-trust-title {
        font-size: 24px;
    }

    .gtt-trust-grid {
        gap: 40px;
    }
}


/* ===== WHY CHOOSE PREMIUM ===== */

.gtt-why2 {
    padding: 90px 20px;
    background: #f8f9fb;
}

.gtt-why2-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.gtt-why2-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gtt-why2-subtitle {
    color: #777;
    margin-bottom: 50px;
}

/* GRID */
.gtt-why2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.gtt-why2-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ICON */
.gtt-why2-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #2ecc71;
}

/* TEXT */
.gtt-why2-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.gtt-why2-card p {
    font-size: 14px;
    color: #666;
}

/* HOVER EFFECT */
.gtt-why2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.gtt-why2-card:hover .gtt-why2-icon {
    background: #2ecc71;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gtt-why2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gtt-why2-grid {
        grid-template-columns: 1fr;
    }
}



/* ===== SERVICES NEW ===== */

.gtt-services2 {
    padding: 90px 20px;
    background: #f8f9fb;
}

.gtt-services2-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.gtt-services2-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gtt-services2-subtitle {
    color: #777;
    margin-bottom: 50px;
}

/* GRID (3-3) */
.gtt-services2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.gtt-services2-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ICON */
.gtt-services2-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #2ecc71;
}

/* TEXT */
.gtt-services2-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.gtt-services2-card p {
    font-size: 14px;
    color: #666;
}

/* HOVER */
.gtt-services2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.gtt-services2-card:hover .gtt-services2-icon {
    background: #2ecc71;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gtt-services2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gtt-services2-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== AIRLINES PREMIUM CARDS ===== */

.gtt-airlines5 {
    padding:0px 20px;
    background: #f8f9fb;
}

.gtt-airlines5-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.gtt-airlines5-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.gtt-airlines5-subtitle {
    color: #777;
    margin-bottom: 50px;
}

/* GRID */
.gtt-airlines5-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

/* CARD */
.gtt-airline5-card {
    height: 95px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: 0.4s;
}

/* OVERLAY */
.gtt-airline5-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

/* LOGO */
.gtt-airline5-overlay img {
    height: 40px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

/* TEXT */
.gtt-airline5-overlay h3 {
    color: #fff;
    font-size: 16px;
}

/* HOVER EFFECT */
.gtt-airline5-card:hover {
    transform: scale(1.06);
}

.gtt-airline5-card:hover .gtt-airline5-overlay {
    background: linear-gradient(to top, rgba(46,204,113,0.9), rgba(0,0,0,0.4));
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gtt-airlines5-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gtt-airlines5-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FLIGHT DEALS ===== */

.gtt-deals {
    padding: 80px 20px;
    background: #f8f9fb;
}

.gtt-deals-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.gtt-deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gtt-deals-tag {
    color: #2ecc71;
    font-size: 14px;
    margin-bottom: 5px;
}

.gtt-deals-header h2 {
    font-size: 36px;
}

/* BUTTON */
.gtt-deals-btn {
    background: #2ecc71;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

/* GRID */
.gtt-deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.gtt-deal-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

/* TEXT */
.gtt-deal-card h3 {
    font-size: 22px;
}

.gtt-deal-card p {
    font-size: 14px;
    color: #555;
}

.gtt-deal-card span {
    color: #2ecc71;
    font-weight: 600;
}

/* BUTTON */
.gtt-deal-card a {
    border: 1px solid #ccc;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    color: #333;
    transition: 0.3s;
}

/* HOVER */
.gtt-deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gtt-deal-card a:hover {
    background: #2ecc71;
    color: #fff;
    border-color: #2ecc71;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gtt-deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gtt-deals-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== FAQ SECTION ===== */

.gtt-faq {
  padding: 0px 20px;
  background: #f8f9fb;
  padding-bottom: 50px;
}

.gtt-faq-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.gtt-faq-title {
    font-size: 34px;
    margin-bottom: 10px;
}

.gtt-faq-subtitle {
    color: #777;
    margin-bottom: 40px;
}

/* ITEM */
.gtt-faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* QUESTION */
.gtt-faq-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PLUS ICON */
.gtt-faq-question span {
    font-size: 20px;
    color: #2ecc71;
}

/* ANSWER */
.gtt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    text-align: left;
}

.gtt-faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #555;
}

/* ACTIVE */
.gtt-faq-item.active .gtt-faq-answer {
    max-height: 200px;
}

.gtt-faq-item.active .gtt-faq-question span {
    transform: rotate(45deg);
}

/* ===== CTA PRO ICON ===== */

.gtt-cta-pro {
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
    text-align: center;
}

/* BACKGROUND ANIMATION */
.gtt-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #0f2027, #203a43, #2ecc71);
    background-size: 600% 600%;
    animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* CONTENT BOX */
.gtt-cta-pro-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    color: #fff;
}

/* OFFER BADGE */
.gtt-cta-offer {
    display: inline-block;
    background: #2ecc71;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* TITLE */
.gtt-cta-pro h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.gtt-cta-pro h2 span {
    color: #2ecc71;
}

/* TEXT */
.gtt-cta-pro p {
    color: #ddd;
    margin-bottom: 30px;
}

/* BUTTONS */
.gtt-cta-pro-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gtt-btn {
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

/* PRIMARY */
.gtt-btn.primary {
    background: #2ecc71;
    color: #fff;
    animation: pulse 2s infinite;
}

/* SECONDARY */
.gtt-btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

/* ICON SIZE */
.gtt-btn i {
    font-size: 14px;
}

/* HOVER */
.gtt-btn.primary:hover {
    background: #27ae60;
}

.gtt-btn.secondary:hover {
    background: #fff;
    color: #000;
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(46,204,113,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .gtt-cta-pro h2 {
        font-size: 28px;
    }
}

/* ===== FOOTER ===== */

.gtt-footer {
    background: #0d1b2a;
    color: #fff;
    padding-top: 60px;
}

/* CONTAINER */
.gtt-footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px 40px;
}

/* HEADINGS */
.gtt-footer-col h3,
.gtt-footer-col h4 {
    margin-bottom: 15px;
}

/* TEXT */
.gtt-footer-col p {
    color: #bbb;
    font-size: 14px;
}

/* LINKS */
.gtt-footer-col ul {
    list-style: none;
}

.gtt-footer-col ul li {
    margin-bottom: 8px;
}

.gtt-footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.gtt-footer-col ul li a:hover {
    color: #2ecc71;
}

/* SOCIAL */
.gtt-footer-social a {
    color: #fff;
    margin-right: 10px;
    font-size: 14px;
}

/* BADGES */
.gtt-footer-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    background: #132536;
    flex-wrap: wrap;
}

.gtt-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.gtt-badge i {
    color: #2ecc71;
}

/* COPYRIGHT */
.gtt-footer-bottom {
    text-align: center;
    padding: 15px;
    background: #09121c;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gtt-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gtt-footer-container {
        grid-template-columns: 1fr;
    }
}


/* ===== CONTACT PAGE ===== */

.gtt-contact-page {
    padding: 90px 20px;
    background: #f8f9fb;
}

.gtt-contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* LEFT */
.gtt-contact-left h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.gtt-contact-left p {
    color: #666;
    margin-bottom: 30px;
}

/* INFO BOX */
.gtt-contact-info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.gtt-contact-info-box i {
    font-size: 18px;
    color: #2ecc71;
    margin-top: 5px;
}

/* RIGHT FORM */
.gtt-contact-right {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* FORM */
.gtt-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.gtt-form-row input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

textarea {
    width: 100%;
    height: 120px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* BUTTON */
.gtt-contact-right button {
    background: #2ecc71;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.gtt-contact-right button:hover {
    background: #27ae60;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gtt-contact-wrapper {
        grid-template-columns: 1fr;
    }
}


/* ===== FAQ 2 COLUMN ===== */

.gtt-faq2 {
    padding: 90px 20px;
    background: #f8f9fb;
    padding-top: 0;
}

.gtt-faq2-container {
    max-width: 1100px;
    margin: auto;
}

.gtt-faq2-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
}

/* GRID */
.gtt-faq2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* COLUMN */
.gtt-faq2-col h3 {
    margin-bottom: 20px;
}

/* ITEM */
.gtt-faq2-item {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
}

/* BUTTON */
.gtt-faq2-item button {
    width: 100%;
    padding: 15px;
    border: none;
    background: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

/* CONTENT */
.gtt-faq2-item .content {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.gtt-faq2-item .content p {
    padding: 0 15px 15px;
    color: #555;
}

/* ACTIVE */
.gtt-faq2-item.active .content {
    max-height: 200px;
}

.gtt-faq2-item span {
    color: #2ecc71;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gtt-faq2-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FLIGHT ROUTES ===== */

.gtt-routes {
    padding: 90px 20px;
    background: #f8f9fb;
    padding-top:40px ;
}

.gtt-routes-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.gtt-routes-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.gtt-routes-subtitle {
    color: #777;
    margin-bottom: 50px;
}

/* GRID */
.gtt-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.gtt-route-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* TEXT */
.gtt-route-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.gtt-route-card p {
    font-size: 14px;
    color: #666;
}

.gtt-route-card span {
    color: #2ecc71;
    font-weight: 600;
}

/* HOVER */
.gtt-route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gtt-routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gtt-routes-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE HEADER ===== */

.gtt-page-header {
    padding: 50px 20px;
    padding-bottom: 0;
    background: #f8f9fb;
}

.gtt-page-header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT */
.gtt-page-header-left h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.gtt-page-header-left p {
    color: #666;
    max-width: 600px;
}

/* BREADCRUMBS */
.gtt-breadcrumbs {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.gtt-breadcrumbs a {
    text-decoration: none;
    color: #2ecc71;
}

.gtt-breadcrumbs span {
    margin: 0 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gtt-page-header-container {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===== AIRLINES PAGE ===== */

.gtt-airlines-page {
    padding: 90px 20px;
    background: #f8f9fb;
}

.gtt-airlines-page-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.gtt-airlines-page-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.gtt-airlines-page-subtitle {
    color: #777;
    margin-bottom: 50px;
}

/* GRID */
.gtt-airlines-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.gtt-airline-card {
    position: relative;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
}

/* BACKGROUND */
.gtt-airline-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: 0.4s;
}

/* OVERLAY */
.gtt-airline-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

/* LOGO */
.gtt-airline-overlay img {
    height: 40px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

/* TEXT */
.gtt-airline-overlay h3 {
    color: #fff;
    font-size: 18px;
}

/* HOVER */
.gtt-airline-card:hover .gtt-airline-bg {
    transform: scale(1.1);
}

.gtt-airline-card:hover .gtt-airline-overlay {
    background: rgba(46,204,113,0.7);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gtt-airlines-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gtt-airlines-page-grid {
        grid-template-columns: 1fr;
    }
}