/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container h2, .container h3 {
    /* text-align: center!important; */
}

html {
    scroll-behavior: smooth;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #fff;
    color: #333;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nairabtn {
    display: inline-block;
    padding: 5px 19px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background-color: rgba(255,255,255,0.30);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: solid 2px white;
    color: white;
    text-decoration: none;
    position: relative;
}

.nairabtn:hover {
    background-color: white;
    color: rgba(0,0,0,0.75);
    border: solid 2px rgba(255,255,255,0.50);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
    width: auto;
}

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

.nav-menu li {
    margin-left: 22px;
}

.nav-menu li a {
    color: #fff;
    font-weight: 500;
    position: relative;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.nav-menu li a::after {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
}

.lang-switcher {
    color: #fff;
    margin-right: 15px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.current-lang {
    display: flex;
    align-items: center;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    padding: 5px 0;
    min-width: 80px;
    display: none;
    z-index: 1001;
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    padding: 8px 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.lang-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    margin-bottom: 0;
}

.youtube-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.youtube-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .youtube-background iframe {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .youtube-background iframe {
        width: 177.78vh;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.clouds-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 750px;
    z-index: 10;
    background-image: url('/cloud.png');
    background-size: 100% 100%;
    background-repeat: repeat-x;
    background-position: bottom center;
}

.cloud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 40%,
    rgba(255, 255, 255, 1) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 80%;
    max-width: 800px;
    z-index: 20;
}

.hero-title {
    font-size: 60px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 50px;
}

.about-layout {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.about-content {
    flex: 1;
    max-width: 45%;
}

.about-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.turkey-collage {
    flex: 1;
    position: relative;
    height: 500px;
}

.collage-image {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.tower-image {
    width: 75%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.castle-image {
    width: 40%;
    height: 35%;
    right: -20px;
    top: 60px;
    z-index: 3;
}

.monument-image {
    width: 50%;
    height: 45%;
    right: -37px;
    bottom: 60px;
    z-index: 2;
}

/* Services Section */
.services-section {
    /* padding: 200px 0; */
    background-color: #f9f9f9;
}

.services-carousel {
    position: relative;
    margin: 0 -15px;
    overflow: hidden;
}

.services-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.service-card {
    flex: 0 0 25%;
    padding: 0 0px;
    box-sizing: border-box;
}

.service-inner {
    position: relative;
    height: 600px;
    border-radius: 0px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.service-title {
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff7e38;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #e66a29;
}

/* Routes Section */
.routes-section {
    /* padding: 200px 0; */
    background-color: #fff;
}

.routes-title {
    color: #ff7e38;
    font-size: 48px;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-align: center;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.route-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 400px;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.route-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.route-card:hover .route-img {
    transform: scale(1.05);
}

.route-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.route-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    max-width: 70%;
    font-family: 'Poppins', sans-serif;
}

.route-circle-button {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.route-circle-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.route-circle-button i {
    transform: rotate(135deg);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.route-card:hover .route-circle-button i {
    transform: rotate(45deg);
}

/* Catering Section */
.catering-section {
    background-color: #f9f9f9;
    padding-top: 60px;
    padding-bottom: 60px;
}

.catering-header {
    text-align: center;
    margin-bottom: 50px;
}

.catering-title {
    color: #ff7e38;
    font-size: 42px;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.catering-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ff7e38;
}

.catering-subtitle {
    color: #666;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    margin-top: 15px;
}

.catering-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.catering-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.catering-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.catering-item {
    flex: 0 0 calc(25% - 15px);
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    transition: transform 0.4s ease-in-out;
}

.item-tall {
    height: 350px;
}

.margin-top {
    margin-top: 50px;
}

.catering-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catering-item:hover .catering-img {
    transform: scale(1.05);
}

.catering-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer Styles */
.footer-clouds-divider {
    position: absolute;
    bottom: -248px;
    left: 0;
    width: 100%;
    height: 564px;
    z-index: 20;
    background-image: url(/cloud-2.png);
    background-size: 100% 100%;
    background-repeat: repeat-x;
    background-position: bottom center;
    transform: rotate(180deg);
}

.footer-top {
    position: relative;
    padding: 550px 0;
    background-image: url('/footer.jpg');
    background-size: cover;
    background-position: center;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
}

.footer-container {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.footer-logo {
    height: 100px;
    margin-bottom: 30px;
}

.footer-text {
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.footer-bottom {
    position: relative;
    padding: 350px 0 50px;
    background-color: #222;
    color: #fff;
    margin-bottom: 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    list-style: none;
}

.footer-links li {
    margin-left: 20px;
}

.footer-links li a:hover {
    color: #ff7e38;
}

.social-links {
    display: flex;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #ff7e38;
}

/* New Footer Design */
.naira-footer {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.naira-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 6fr 3fr 3fr;
    gap: 40px;
    padding: 0 20px;
}

.naira-footer-column {
    display: flex;
    flex-direction: column;
}

.naira-footer-images {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.naira-footer-image {
    height: 60px;
    object-fit: cover;
}

.naira-footer-divider {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
}

.naira-footer-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.naira-footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-top: auto;
}

.naira-footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.naira-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #ff7e38;
}

.naira-footer-links {
    list-style: none;
    margin-bottom: 30px;
}

.naira-footer-links li {
    margin-bottom: 10px;
}

.naira-footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.naira-footer-links a:hover {
    color: #ff7e38;
}

.naira-footer-cert {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.naira-cert-image {
    height: 40px;
    margin-right: 10px;
}

.naira-cert-number {
    display: flex;
    flex-direction: column;
}

.naira-cert-number span {
    font-size: 10px;
    color: #aaa;
}

.naira-cert-number strong {
    font-size: 16px;
    font-weight: 600;
}

.naira-contact-address,
.naira-contact-phone,
.naira-contact-email {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.naira-contact-phone a,
.naira-contact-email a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.naira-contact-phone a:hover,
.naira-contact-email a:hover {
    color: #ff7e38;
}

.naira-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.naira-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.naira-social-icon:hover {
    background-color: #ff7e38;
}

.naira-social-icon i {
    color: #fff;
    font-size: 16px;
}

/* Section Headings */
.section-title {
    color: #ff7e38;
    font-size: 42px;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background-color: #ff7e38;
    transform: translateX(-50%);
}

.section-subtitle {
    color: #666;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-title {
    display: inline-block;
}

.section-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .catering-item {
        flex: 0 0 calc(33.333% - 14px);
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: -8px;
        left: -100%;
        width: 100%;
        height: calc(101vh);
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        justify-content: top;
        transition: left 0.3s ease;
        padding-top: 110px;
    }

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

    .nav-menu li {
        margin: 20px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .about-layout {
        flex-direction: column;
    }

    .about-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .turkey-collage {
        width: 100%;
    }

    .service-card {
        flex: 0 0 50%;
    }

    .catering-item {
        flex: 0 0 calc(50% - 10px);
    }

    .item-tall {
        height: 300px;
    }

    .margin-top {
        margin-top: 30px;
    }

    .footer-bottom-container {
        flex-direction: column;
    }

    .footer-links {
        margin-top: 20px;
    }

    .footer-links li {
        margin: 0 10px;
    }

    .social-links {
        margin-top: 20px;
    }

    .naira-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .naira-footer-about {
        grid-column: span 6;
    }

    .naira-footer-menu,
    .naira-footer-contact {
        grid-column: span 3;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 50vh !important;
    }

    .clouds-divider {
        height: 364px;
    }

    /* Section padding dÃ¼zenlemeleri */
    .about-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .services-section {
        padding: 100px 0;
    }

    .routes-section {
        /* padding: 100px 0; */
    }

    .catering-section {
        padding: 100px 0;
    }

    .service-card {
        flex: 0 0 50%;
    }

    .service-inner {
        height: 400px;
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .route-card {
        height: 220px;
    }

    .routes-title {
        font-size: 36px;
    }

    .catering-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        transition: none;
    }

    .catering-item {
        width: 100%;
    }

    .catering-item, .item-tall {
        height: 250px;
    }

    .margin-top {
        margin-top: 0;
    }

    .footer-clouds-divider {
        height: 348px;
        margin-bottom: 120px;
    }

    /* Turkey Collage masaÃ¼stÃ¼ stillerini koruyoruz */
    .turkey-collage {
        position: relative;
        height: 400px; /* KÃ¼Ã§Ã¼ltÃ¼lmÃ¼ÅŸ ama orantÄ±lÄ± bir yÃ¼kseklik */
    }

    .collage-image {
        position: absolute;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .tower-image {
        width: 75%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .castle-image {
        width: 40%;
        height: 35%;
        right: -20px;
        top: 60px;
        z-index: 3;
    }

    .monument-image {
        width: 50%;
        height: 45%;
        right: -37px;
        bottom: 60px;
        z-index: 2;
    }

    .naira-footer-container {
        grid-template-columns: 1fr;
    }

    .naira-footer-about {
        grid-column: span 1;
    }

    .naira-footer-images {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 20px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact-text h3 {
        font-size: 16px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-answer {
        padding: 0 20px 15px;
    }

    .service-card {
        flex: 0 0 100%;
    }
}

/* Footer Styles - Updated */
.footer-bottom {
    position: relative;
    padding: 350px 0 50px;
    background-color: #222;
    color: #fff;
    margin-bottom: 0;
}

.footer-bottom-container {
    position: relative;
    z-index: 1;
}

/* Hide background image on mobile */
@media (max-width: 767px) {
    .footer-bottom::before {
        display: none;
    }

    .footer-bottom {
        background-image: none;
    }
}

/*contact*/

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-intro {
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-top: 28px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f8f4f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7e38;
    font-size: 20px;
}

.contact-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.contact-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-text a {
    color: #666;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-text a:hover {
    color: #ff7e38;
}

.social-media h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f4f0;
    color: #ff7e38;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff7e38;
    color: #fff;
}

/* Contact Form Styles */
.contact-form-container {
    background-color: #ff7e380a;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7e38;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 14px;
}

.privacy-link {
    color: #ff7e38;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #8a744e;
}

.submit-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff7e38;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #8a744e;
}

/* Map Section */
.map-section {
    padding: 0;
    margin-bottom: 80px;
}

.map-container {
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f4f0;
}

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

.faq-item {
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    flex: 1;
    margin: 0;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7e38;
    font-size: 16px;
    width: 24px;
    height: 24px;
}

.faq-answer {
    display: none;
    padding: 0 25px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Services Section - With conditional carousel navigation */
.services-section {
    /* padding: 200px 0; */
    background-color: #f9f9f9;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
    padding: 0 20px;
}

.services-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
}

.services-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.service-card {
    flex: 0 0 16.666%; /* For 6 cards - each takes 1/6 of the screen */
    box-sizing: border-box;
}

.service-inner {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    text-align: center;
}

.service-title {
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

/* Carousel navigation - hidden by default on largest screens */
.carousel-nav {
    display: none; /* Hidden by default on large screens where all cards are visible */
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
    padding: 10px 0;
    position: relative;
    z-index: 10;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff7e38;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background-color: #e66a29;
    transform: scale(1.05);
}

.carousel-btn i {
    font-size: 16px;
}

/* Ensure horizontal overflow is properly handled */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Responsive adjustments - show navigation when needed */
@media (max-width: 1400px) {
    .service-card {
        flex: 0 0 20%; /* 5 cards on large screens */
    }
    .carousel-nav {
        display: flex; /* Show navigation when there are more cards than can be displayed */
    }
}

@media (max-width: 1100px) {
    .service-card {
        flex: 0 0 25%; /* 4 cards on medium screens */
    }
    .carousel-nav {
        display: flex;
    }
}

@media (max-width: 991px) {
    .service-card {
        flex: 0 0 33.333%; /* 3 cards on small screens */
    }
    .carousel-nav {
        display: flex;
    }

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .service-card {
        flex: 0 0 50%; /* 2 cards on mobile */
    }
    .service-inner {
        height: 400px; /* Shorter on mobile */
    }
    .carousel-nav {
        display: flex;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-question h3 {
        font-size: 16px;
    }


    .turkey-collage {
        flex: 0.5!important;
        position: relative;
        height: 500px;
    }
}/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container h2, .container h3 {
    /* text-align: center!important; */
}

html {
    scroll-behavior: smooth;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #fff;
    color: #333;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nairabtn {
    display: inline-block;
    padding: 5px 19px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background-color: rgba(255,255,255,0.30);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: solid 2px white;
    color: white;
    text-decoration: none;
    position: relative;
}

.nairabtn:hover {
    background-color: white;
    color: rgba(0,0,0,0.75);
    border: solid 2px rgba(255,255,255,0.50);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
    width: auto;
}

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

.nav-menu li {
    margin-left: 22px;
}

.nav-menu li a {
    color: #fff;
    font-weight: 500;
    position: relative;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.nav-menu li a::after {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
}

.lang-switcher {
    color: #fff;
    margin-right: 15px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.current-lang {
    display: flex;
    align-items: center;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    padding: 5px 0;
    min-width: 80px;
    display: none;
    z-index: 1001;
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    padding: 8px 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.lang-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    margin-bottom: 0;
}

.youtube-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.youtube-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .youtube-background iframe {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .youtube-background iframe {
        width: 177.78vh;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.clouds-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 750px;
    z-index: 10;
    background-image: url('/cloud.png');
    background-size: 100% 100%;
    background-repeat: repeat-x;
    background-position: bottom center;
}

.cloud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 40%,
    rgba(255, 255, 255, 1) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 80%;
    max-width: 800px;
    z-index: 20;
}

.hero-title {
    font-size: 60px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 50px;
}

.about-layout {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.about-content {
    flex: 1;
    max-width: 45%;
}

.about-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.turkey-collage {
    flex: 1;
    position: relative;
    height: 500px;
}

.collage-image {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.tower-image {
    width: 75%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.castle-image {
    width: 40%;
    height: 35%;
    right: -20px;
    top: 60px;
    z-index: 3;
}

.monument-image {
    width: 50%;
    height: 45%;
    right: -37px;
    bottom: 60px;
    z-index: 2;
}

/* Services Section */
.services-section {
    /* padding: 200px 0; */
    background-color: #f9f9f9;
}

.services-carousel {
    position: relative;
    margin: 0 -15px;
    overflow: hidden;
}

.services-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.service-card {
    flex: 0 0 25%;
    padding: 0 0px;
    box-sizing: border-box;
}

.service-inner {
    position: relative;
    height: 600px;
    border-radius: 0px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.service-title {
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff7e38;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #e66a29;
}

/* Routes Section */
.routes-section {
    /* padding: 200px 0; */
    background-color: #fff;
}

.routes-title {
    color: #ff7e38;
    font-size: 48px;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-align: center;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.route-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 400px;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.route-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.route-card:hover .route-img {
    transform: scale(1.05);
}

.route-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.route-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    max-width: 70%;
    font-family: 'Poppins', sans-serif;
}

.route-circle-button {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.route-circle-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.route-circle-button i {
    transform: rotate(135deg);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.route-card:hover .route-circle-button i {
    transform: rotate(45deg);
}

/* Catering Section */
.catering-section {
    background-color: #f9f9f9;
    padding-top: 60px;
    padding-bottom: 60px;
}

.catering-header {
    text-align: center;
    margin-bottom: 50px;
}

.catering-title {
    color: #ff7e38;
    font-size: 42px;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.catering-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ff7e38;
}

.catering-subtitle {
    color: #666;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    margin-top: 15px;
}

.catering-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.catering-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.catering-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.catering-item {
    flex: 0 0 calc(25% - 15px);
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    transition: transform 0.4s ease-in-out;
}

.item-tall {
    height: 350px;
}

.margin-top {
    margin-top: 50px;
}

.catering-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catering-item:hover .catering-img {
    transform: scale(1.05);
}

.catering-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer Styles */
.footer-clouds-divider {
    position: absolute;
    bottom: -248px;
    left: 0;
    width: 100%;
    height: 564px;
    z-index: 20;
    background-image: url(/cloud-2.png);
    background-size: 100% 100%;
    background-repeat: repeat-x;
    background-position: bottom center;
    transform: rotate(180deg);
}

.footer-top {
    position: relative;
    padding: 550px 0;
    background-image: url('/footer.jpg');
    background-size: cover;
    background-position: center;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
}

.footer-container {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.footer-logo {
    height: 100px;
    margin-bottom: 30px;
}

.footer-text {
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.footer-bottom {
    position: relative;
    padding: 350px 0 50px;
    background-color: #222;
    color: #fff;
    margin-bottom: 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    list-style: none;
}

.footer-links li {
    margin-left: 20px;
}

.footer-links li a:hover {
    color: #ff7e38;
}

.social-links {
    display: flex;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #ff7e38;
}

/* New Footer Design */
.naira-footer {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.naira-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 6fr 3fr 3fr;
    gap: 40px;
    padding: 0 20px;
}

.naira-footer-column {
    display: flex;
    flex-direction: column;
}

.naira-footer-images {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.naira-footer-image {
    height: 60px;
    object-fit: cover;
}

.naira-footer-divider {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
}

.naira-footer-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.naira-footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-top: auto;
}

.naira-footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.naira-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #ff7e38;
}

.naira-footer-links {
    list-style: none;
    margin-bottom: 30px;
}

.naira-footer-links li {
    margin-bottom: 10px;
}

.naira-footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.naira-footer-links a:hover {
    color: #ff7e38;
}

.naira-footer-cert {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.naira-cert-image {
    height: 40px;
    margin-right: 10px;
}

.naira-cert-number {
    display: flex;
    flex-direction: column;
}

.naira-cert-number span {
    font-size: 10px;
    color: #aaa;
}

.naira-cert-number strong {
    font-size: 16px;
    font-weight: 600;
}

.naira-contact-address,
.naira-contact-phone,
.naira-contact-email {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.naira-contact-phone a,
.naira-contact-email a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.naira-contact-phone a:hover,
.naira-contact-email a:hover {
    color: #ff7e38;
}

.naira-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.naira-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.naira-social-icon:hover {
    background-color: #ff7e38;
}

.naira-social-icon i {
    color: #fff;
    font-size: 16px;
}

/* Section Headings */
.section-title {
    color: #ff7e38;
    font-size: 42px;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background-color: #ff7e38;
    transform: translateX(-50%);
}

.section-subtitle {
    color: #666;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-title {
    display: inline-block;
}

.section-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .catering-item {
        flex: 0 0 calc(33.333% - 14px);
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: -8px;
        left: -100%;
        width: 100%;
        height: calc(101vh);
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        justify-content: top;
        transition: left 0.3s ease;
        padding-top: 110px;
    }

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

    .nav-menu li {
        margin: 20px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .about-layout {
        flex-direction: column;
    }

    .about-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .turkey-collage {
        width: 100%;
    }

    .service-card {
        flex: 0 0 50%;
    }

    .catering-item {
        flex: 0 0 calc(50% - 10px);
    }

    .item-tall {
        height: 300px;
    }

    .margin-top {
        margin-top: 30px;
    }

    .footer-bottom-container {
        flex-direction: column;
    }

    .footer-links {
        margin-top: 20px;
    }

    .footer-links li {
        margin: 0 10px;
    }

    .social-links {
        margin-top: 20px;
    }

    .naira-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .naira-footer-about {
        grid-column: span 6;
    }

    .naira-footer-menu,
    .naira-footer-contact {
        grid-column: span 3;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 50vh !important;
    }

    .clouds-divider {
        height: 364px;
    }

    /* Section padding dÃ¼zenlemeleri */
    .about-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .services-section {
        padding: 50px 0;
    }

    .routes-section {
        /* padding: 100px 0; */
    }

    .catering-section {
        padding: 100px 0;
    }

    .service-card {
        flex: 0 0 50%;
    }

    .service-inner {
        height: 400px;
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .route-card {
        height: 220px;
    }

    .routes-title {
        font-size: 36px;
    }

    .catering-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        transition: none;
    }

    .catering-item {
        width: 100%;
    }

    .catering-item, .item-tall {
        height: 250px;
    }

    .margin-top {
        margin-top: 0;
    }

    .footer-clouds-divider {
        height: 348px;
        margin-bottom: 113px;
    }

    /* Turkey Collage masaÃ¼stÃ¼ stillerini koruyoruz */
    .turkey-collage {
        position: relative;
        height: 400px; /* KÃ¼Ã§Ã¼ltÃ¼lmÃ¼ÅŸ ama orantÄ±lÄ± bir yÃ¼kseklik */
    }

    .collage-image {
        position: absolute;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .tower-image {
        width: 75%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .castle-image {
        width: 40%;
        height: 35%;
        right: -20px;
        top: 60px;
        z-index: 3;
    }

    .monument-image {
        width: 50%;
        height: 45%;
        right: -37px;
        bottom: 60px;
        z-index: 2;
    }

    .naira-footer-container {
        grid-template-columns: 1fr;
    }

    .naira-footer-about {
        grid-column: span 1;
    }

    .naira-footer-images {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 20px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact-text h3 {
        font-size: 16px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-answer {
        padding: 0 20px 15px;
    }

    .service-card {
        flex: 0 0 100%;
    }
}

/* Footer Styles - Updated */
.footer-bottom {
    position: relative;
    padding: 350px 0 50px;
    background-color: #222;
    color: #fff;
    margin-bottom: 0;
}

.footer-bottom-container {
    position: relative;
    z-index: 1;
}

/* Hide background image on mobile */
@media (max-width: 767px) {
    .footer-bottom::before {
        display: none;
    }

    .footer-bottom {
        background-image: none;
        padding-top: 160px;
    }
}

/*contact*/

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-intro {
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-top: 28px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f8f4f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7e38;
    font-size: 20px;
}

.contact-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.contact-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-text a {
    color: #666;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-text a:hover {
    color: #ff7e38;
}

.social-media h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f4f0;
    color: #ff7e38;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff7e38;
    color: #fff;
}

/* Contact Form Styles */
.contact-form-container {
    background-color: #ff7e380a;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7e38;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 14px;
}

.privacy-link {
    color: #ff7e38;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #8a744e;
}

.submit-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff7e38;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #8a744e;
}

/* Map Section */
.map-section {
    padding: 0;
    margin-bottom: 80px;
}

.map-container {
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f4f0;
}

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

.faq-item {
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    flex: 1;
    margin: 0;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7e38;
    font-size: 16px;
    width: 24px;
    height: 24px;
}

.faq-answer {
    display: none;
    padding: 0 25px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Services Section - With conditional carousel navigation */
.services-section {
    /* padding: 200px 0; */
    background-color: #f9f9f9;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
    padding: 0 20px;
}

.services-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
}

.services-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.service-card {
    flex: 0 0 16.666%; /* For 6 cards - each takes 1/6 of the screen */
    box-sizing: border-box;
}

.service-inner {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    text-align: center;
}

.service-title {
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

/* Carousel navigation - hidden by default on largest screens */
.carousel-nav {
    display: none; /* Hidden by default on large screens where all cards are visible */
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
    padding: 10px 0;
    position: relative;
    z-index: 10;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff7e38;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background-color: #e66a29;
    transform: scale(1.05);
}

.carousel-btn i {
    font-size: 16px;
}

/* Ensure horizontal overflow is properly handled */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Responsive adjustments - show navigation when needed */
@media (max-width: 1400px) {
    .service-card {
        flex: 0 0 20%; /* 5 cards on large screens */
    }
    .carousel-nav {
        display: flex; /* Show navigation when there are more cards than can be displayed */
    }
}

@media (max-width: 1100px) {
    .service-card {
        flex: 0 0 25%; /* 4 cards on medium screens */
    }
    .carousel-nav {
        display: flex;
    }
}

@media (max-width: 991px) {
    .service-card {
        flex: 0 0 33.333%; /* 3 cards on small screens */
    }
    .carousel-nav {
        display: flex;
    }

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .service-card {
        flex: 0 0 50%; /* 2 cards on mobile */
    }
    .service-inner {
        height: 400px; /* Shorter on mobile */
    }
    .carousel-nav {
        display: flex;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-question h3 {
        font-size: 16px;
    }


    .turkey-collage {
        flex: 0.5!important;
        position: relative;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 0 0 100%; /* 1 card on very small screens */
    }
    .carousel-nav {
        display: flex;
    }
}


@media (max-width: 480px) {
    .service-card {
        flex: 0 0 100%; /* 1 card on very small screens */
    }
    .carousel-nav {
        display: flex;
    }
}
