/*
 * Theme Name:		GWT-Wordpress 27.0.0
 * Theme URI:		https://bit.ly/gwtversions
 * Description:		Custom WordPress theme based on the draft Unified Web Content Policy 
 *					prepared by the PCDSPO, DOST-ASTI, and DOST-ICTO. Theme is built on 
 *					HTML5 responsive WordPress framework based on ZURB's Foundation.
 * Version:			27.0.0v2
 * Author:			J.K. | GWHS Team
 * Author URI:		https://github.com/GOSD-DICT
 * License:			MIT License
 * License URI:		http://www.opensource.org/licenses/mit-license.php
 * Tags: 			theme-options, rtl-language-support, featured-images, editor-style, custom-menu, 
 *					responsive-layout, right-sidebar, left-sidebar, one-column, two-columns, three-columns
 */


 /** Your style here **/ 
 :root {
    --primary-gold: #D4A574;
    --dark-gold: #B8935F;
    --text-dark: #000;
    --text-gray: #141414;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --green: #4CAF50;
    --red: #E53935;
    --blue: #2196F3;
    --max-width: 80rem;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #0a0a0a;
}

a {
    text-decoration: none;
}

.container-main#main-content {
    padding-bottom: 5rem;
}

.container-banner {
    display: none;
}

nav ul li a {
    font-size: 0.9rem !important;
    font-weight: normal !important;
}

h1.logo img {
    height: 48px; 
}

/* Hero Section */
.hero {
    background-size: cover !important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 200px 0;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
    width: 100%;
}

.hero h1 {
    font-size: 56px;
    font-weight: bold;
    color: #9D7C2F;
    letter-spacing: 2px;
}

.hero p {
    font-size: 35px;
    color: #0a0a0a;
    margin-bottom: 30px;
    font-family: 'Playfair Display', sans-serif;
}

.btn-primary {
    background: #9D7C2F;
    color: var(--white);
    padding: 15px 60px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #8B6B25;
    color: var(--white);
}

/* Our History Section */
.history-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.history-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: center;
}

.history-title {
    font-size: 48px;
    color: #000000;
    margin-bottom: 20px;
}

.history-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.history-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9D7C2F;
    font-size: 50px;
}

.stat-label {
    font-size: 18px;
    color: #9D7C2F;
}

.history-image img {
    width: 100%;
    border-radius: 20px;
}

/* Support Local Section */
.support-section {
    background: #FFFFFF;
    margin-top: 40px;
    text-align: center;
}

.support-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.product-item img {
    background: var(--white);
    border-radius: 15px;
}

.product-item:hover img {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 8px 16px rgba(0,0,0,0.2);
}

/* Slick Arrow Styling */
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #9D7C2F;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 1 !important;
    visibility: visible !important;
}

.slick-prev:hover, .slick-next:hover {
    background: #8B6B25;
    transform: translateY(-50%) scale(1.1);
}

.slick-prev:before, .slick-next:before {
    content: '';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 20px;
}

.slick-prev:before {
    content: '\f104' !important;
}

.slick-next:before {
    content: '\f105' !important;
}

.slick-prev {
    left: 35px;
}

.slick-next {
    right: 35px;
}

/* Responsive arrow positioning */
@media (max-width: 1024px) {
    .slick-prev {
        left: 20px;
    }
    
    .slick-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .slick-prev, .slick-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slick-prev {
        left: 10px;
    }
    
    .slick-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .slick-prev, .slick-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slick-prev {
        left: 5px;
    }
    
    .slick-next {
        right: 5px;
    }
}

.product-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

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

.support-section {
    margin: 160px 0;
}

.support-section .slick-slider:not(.centered) .slick-slide {
    opacity: 0.3;
    z-index: 1;
}
.support-section .slick-slider:not(.centered) .slick-slide.slick-center {
    transform: scale(2);
    transition: transform 0.3s ease;
    opacity: 1;
    position: relative;
}

 .slick-slider:not(.centered) .slick-center.product-item img {
    height: auto !important;
}

.slick-list {
    overflow: visible !important;
}


@media (max-width: 768px) {
    .support-section {
        margin: 30px 0 0;
    }
    .support-section .slick-slide {
        opacity: 0.8;
    }
    .support-section .slick-slide.slick-center {
        transform: scale(1.2);
        opacity: 1;
    }
    .product-item img {
        max-width: 100%!important;
        height: auto;
    }
}


.slick-dots li button:before {
    color: #9D7C2F;
}

.slick-dots li.slick-active button:before {
    color: #9D7C2F;
}

/* Stores Section */
.stores-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.stores-container {
    width: 100%;
    margin: 0
}

.stores-title {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

.stores-subtitle {
    color: var(--text-gray);
    margin-bottom: 50px;
    text-align: center;
}

.store-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    border: 2px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 4px 8px rgba(0,0,0,0.1);
    margin: 40px 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.store-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3), 0 8px 16px rgba(0,0,0,0.2);
}

.store-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.store-card:hover img {
    transform: scale(1.1);
}

.store-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.store-location {
    color: var(--text-gray);
    font-size: 14px;
}

/* Balikbayan Section */
.balikbayan-section {
    background-size: cover !important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    color: var(--white);
    padding: 60px 0;
    position: relative;
}

.balikbayan-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.balikbayan-content {
    flex: 1;
}

.balikbayan-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.balikbayan-logo {
    background: var(--primary-gold);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    margin-left: 20px;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: #FFFFFF;
}
.news-section-carousel {
    margin-bottom: 100px;  
}

.news-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.news-title {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.news-subtitle {
    color: var(--text-gray);
    margin-bottom: 50px;
}

.featured-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.featured-content {
    padding: 0;
}

.category-tag {
    display: inline-block;
    background: transparent;
    color: #9D7C2F;
    border: 1px solid #9D7C2F;
    padding: 3px 13px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.featured-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: bold;
}

.featured-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #9D7C2F;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more:hover {
    color: #fff !important;
    background: #8B6B25;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(157, 124, 47, 0.3);
}

.read-more i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(2px);
}

.featured-image-container {
    position: relative;
}

.featured-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    margin: 20px 10px;
}

.news-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 8px 16px rgba(0,0,0,0.2);
}

.news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image {
    transform: scale(1.1);
}

.news-card-content {
    padding: 20px;
}

.news-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: bold;
}

.news-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Travelite Section */
.travelite-section {
    background-size: cover !important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.travelite-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.travelite-content {
    flex: 1;
}

.travelite-badge {
    background: #FFD700;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 14px;
}

.travelite-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFD700;
}

.travelite-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.travelite-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.travelite-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.travelite-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Customer Experiences */
.customer-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.product-item:hover img {
    transform: scale(1.05);
}
.customer-section .testimonials {
    margin: 100px 0 60px;
}

.customer-section .slick-slide {
    z-index: 1;
}

@media (min-width: 1024px) {
    .customer-section .slick-slide.slick-center {
        transform: scale(1.2);
        transition: transform 0.3s ease;
        position: relative;
        z-index: 10;
        border-color: var(--primary-gold);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
    }
}


.customer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.customer-title {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.customer-subtitle {
    color: var(--text-gray);
    margin-bottom: 50px;
}

.testimonial {
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 40px 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3), 0 8px 16px rgba(0,0,0,0.2);
}

.testimonial-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    margin-right: 2px;
    font-size: 16px;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.author-name {
    font-weight: bold;
    color: var(--text-dark);
}



/* Common Title Classes */
.section-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    color: #0a0a0a;
    margin-bottom: 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

.page-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.page-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Specific Title Classes */
.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #9D7C2F;
    margin-bottom: 0;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 24px;
    color: #000000;
    margin-bottom: 30px;
}

.history-title {
    font-size: 48px;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.stores-title {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.stores-subtitle {
    color: var(--text-gray);
    margin-bottom: 50px;
    text-align: center;
    font-size: 18px;
}

.balikbayan-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.news-title {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.news-subtitle {
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 18px;
}

.travelite-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
}

.travelite-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.customer-title {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.customer-subtitle {
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 18px;
}

.featured-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

.card-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: bold;
}

.store-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 32px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .history-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .balikbayan-container {
        flex-direction: column;
        text-align: center;
    }

    .stores-container {
        padding: 0 20px;
    }

    .support-container {
        padding: 0 20px;
    }

    .testimonials {
        margin: 0 10px;
    }

    .slick-prev {
        left: 5px;
    }

    .slick-next {
        right: 5px;
    }

    .section-title,
    .page-title,
    .hero-title,
    .history-title,
    .stores-title,
    .balikbayan-title,
    .news-title,
    .travelite-title,
    .customer-title {
        font-size: 28px;
    }

    .section-subtitle,
    .news-subtitle,
    .customer-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-subtitle,
    .hero-subtitle,
    .travelite-subtitle {
        font-size: 20px;
    }

    .featured-title {
        font-size: 24px;
    }

    .card-title,
    .store-name {
        font-size: 16px;
    }

}

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

    .support-container {
        padding: 0 10px;
    }

    .testimonials {
        margin: 0 5px;
    }

    .slick-prev {
        left: 2px;
    }

    .slick-next {
        right: 2px;
    }

    .section-title,
    .page-title,
    .hero-title,
    .history-title,
    .stores-title,
    .balikbayan-title,
    .news-title,
    .travelite-title,
    .customer-title {
        font-size: 22px;
    }

    .section-subtitle,
    .news-subtitle,
    .customer-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .page-subtitle,
    .hero-subtitle,
    .travelite-subtitle {
        font-size: 18px;
    }

    .featured-title {
        font-size: 20px;
    }

    .card-title,
    .store-name {
        font-size: 14px;
    }

}

/* Extra small mobile devices */
@media (max-width: 320px) {
    .section-title,
    .page-title,
    .hero-title,
    .history-title,
    .stores-title,
    .balikbayan-title,
    .news-title,
    .travelite-title,
    .customer-title {
        font-size: 20px;
    }

    .section-subtitle,
    .news-subtitle,
    .customer-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .page-subtitle,
    .hero-subtitle,
    .travelite-subtitle {
        font-size: 16px;
    }

    .featured-title {
        font-size: 18px;
    }

    .card-title,
    .store-name {
        font-size: 13px;
    }
}



.balikbayan-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.balikbayan-card {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Carousel Spacing and Layout */
.centered-carousel .product-item {
    padding: 0 15px;
    margin: 0;
}

.stores-carousel .store-card {
    margin: 0 15px;
    padding: 0;
}

.news-carousel .news-card {
    margin: 0 15px;
    padding: 0;
}

.testimonials .testimonial {
    margin: 0 15px;
    padding: 20px;
}



.news-archive-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}



/* News Archive Grid */
.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.news-archive-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-archive-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.news-archive-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.news-archive-item:hover .news-img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gold);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-archive-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-gray);
}

.news-date {
    font-weight: 500;
}

.news-author {
    font-style: italic;
}

.news-archive-content .news-archive-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.news-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination-btn {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
    color: white;
}

.pagination-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}

.pagination-dots {
    color: var(--text-gray);
    font-weight: bold;
}



/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('img/airport-scaled.jpg');
    background-size: cover !important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

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

.newsletter-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.newsletter-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.newsletter-btn {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--dark-gold);
}

/* Responsive Design for News Archive */
@media (max-width: 768px) {
    .news-archive-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pagination-numbers {
        order: 2;
        width: 100%;
        justify-content: center;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .news-archive-content .news-archive-title {
        font-size: 18px;
    }
}
/*



*/
/********** NEWS MILESTONE PAGE **********/


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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gold);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 45%;
    position: relative;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-gold);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent white;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
    transform: translateY(-50%);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border: 4px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.timeline-year {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.timeline-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.timeline-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}


@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-content::before {
        left: -15px !important;
        border-width: 15px 15px 15px 0 !important;
        border-color: transparent white transparent transparent !important;
    }
    
    .timeline-marker {
        left: -30px;
    }
    
    .milestone-hero h1 {
        font-size: 40px;
    }
    
    .milestone-hero p {
        font-size: 18px;
    }
}
/********** NEWS MILESTONE PAGE **********/
/*



*/
/********** START BIDDING PAGE **********/
.bidding-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.bidding-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.bidding-header {
    background: var(--primary-gold);
    color: white;
    padding: 15px 30px;
    text-align: center;
}

.bidding-header h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.bidding-table-container {
    overflow-x: auto;
}

.bidding-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    table-layout: fixed;
}

.bidding-table th {
    background: #f5f5f5;
    color: var(--text-dark);
    font-weight: 600;
    padding: 5px 20px;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
    font-size: 16px;
    position: relative;
}



.bidding-table td {
    padding: 10px 20px 5px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
    color: var(--text-gray);
    line-height: 1.6;
    word-wrap: break-word;
}

.bidding-table tr:nth-child(even) {
    background: #fafafa;
}

.bidding-table tr:hover {
    background: #f8f8f8;
    transition: background-color 0.3s ease;
}

.bidding-table tr:last-child td {
    border-bottom: none;
}

.bidding-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

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

.bidding-attachment {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 4px;
    background: rgba(212, 165, 116, 0.1);
    font-size: 14px;
}

.bidding-attachment:hover {
    color: var(--dark-gold);
    background: rgba(212, 165, 116, 0.2);
    transform: translateX(5px);
}

.bidding-attachment i {
    margin-right: 8px;
    font-size: 14px;
    min-width: 14px;
}

.bidding-date {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
}

.no-bidding {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
    font-size: 18px;
}

         .no-bidding i {
     font-size: 48px;
     color: var(--primary-gold);
     margin-bottom: 20px;
     opacity: 0.5;
 }
 
 /* Pagination Section */
 .pagination-section {
     padding: 50px 0;
 }
 
 /* Pagination Styles */
 .bidding-pagination {
     text-align: center;
 }
 
 .pagination-wrapper {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 10px;
     margin-bottom: 20px;
 }
 
 .pagination-numbers {
     display: flex;
     gap: 5px;
 }
 
 .pagination-link {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     padding: 10px 15px;
     background: white;
     color: var(--text-gray);
     text-decoration: none;
     border: 1px solid #e0e0e0;
     border-radius: 6px;
     font-size: 14px;
     font-weight: 500;
     transition: all 0.3s ease;
 }
 
 .pagination-link:hover {
     background: var(--primary-gold);
     color: white;
     border-color: var(--primary-gold);
 }
 
 .pagination-current {
     display: inline-block;
     padding: 10px 15px;
     background: var(--primary-gold);
     color: white;
     border: 1px solid var(--primary-gold);
     border-radius: 6px;
     font-size: 14px;
     font-weight: 600;
 }
 
 .pagination-info {
     color: var(--text-gray);
     font-size: 14px;
     margin-top: 10px;
 }

        @media (max-width: 768px) {
    .bidding-hero h1 {
        font-size: 40px;
    }
    
    .bidding-hero p {
        font-size: 18px;
    }
    
    .bidding-header h2 {
        font-size: 20px;
    }
    
    .bidding-table table {
        display: block;
        width: 100%;
    }
    
    .bidding-table thead {
        display: none;
    }
    
    .bidding-table tbody {
        display: block;
        width: 100%;
    }
    
                 .bidding-table tr {
         display: block;
         border: 1px solid #e0e0e0;
         background: white;
     }
    
                 .bidding-table td {
         display: block;
         width: 100% !important;
         padding: 15px;
         border-bottom: 1px solid #f0f0f0;
         text-align: left;
     }
    
    .bidding-table td:last-child {
        border-bottom: none;
    }
    
                 .bidding-table td::before {
         display: none;
     }
    
    .bidding-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .bidding-attachment {
        font-size: 14px;
        padding: 8px 12px;
        margin-bottom: 8px;
    }
    
    .bidding-attachment i {
        font-size: 14px;
        margin-right: 8px;
    }
    
                 .bidding-date {
         font-size: 14px;
         text-align: left;
     }
     
     /* Mobile Pagination */
     .pagination-section {
         padding: 15px 0;
     }
     
     .bidding-pagination {
         margin-top: 0;
     }
     
     .pagination-wrapper {
         flex-direction: column;
         gap: 15px;
     }
     
     .pagination-numbers {
         order: 2;
     }
     
     .pagination-link.prev-link {
         order: 1;
     }
     
     .pagination-link.next-link {
         order: 3;
     }
     
     .pagination-link {
         padding: 8px 12px;
         font-size: 13px;
     }
     
     .pagination-current {
         padding: 8px 12px;
         font-size: 13px;
     }
     
     .pagination-info {
         font-size: 13px;
         margin-top: 15px;
     }
}

                         @media (max-width: 480px) {
     .bidding-table td {
         width: 100% !important;
         padding: 12px;
         font-size: 13px;
     }
    
    .bidding-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .bidding-attachment {
        font-size: 13px;
        padding: 6px 10px;
        margin-bottom: 6px;
    }
    
    .bidding-attachment i {
        font-size: 13px;
        margin-right: 6px;
    }
    
    .bidding-date {
        font-size: 13px;
    }
}
/********** END BIDDING PAGE **********/
/*



*/
/********** START FOOTER SECTION **********/

/* Footer Styles */
.footer {
    color: #333333;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-section h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-left: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
    color: #333333;
    font-size: 16px;
    line-height: 1.5;
}

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

.footer-section ul li a:hover {
    color: #9D7C2F;
}

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

.social-icon {
    width: 50px;
    height: 50px;
    background: #D4A574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-icon:hover,
.social-icon:focus {
    background: #B8935F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #fff;
}


@media (max-width: 768px) {
    /* Footer Mobile Responsive */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

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

    .footer-section ul li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .social-icons {
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        background: #D4A574;
    }
}

@media (max-width: 480px) {
    /* Footer Small Mobile Responsive */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        padding: 0 15px;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer-section ul li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .social-icons {
        gap: 12px;
        margin-top: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: #D4A574;
    }
}
/********** END FOOTER SECITON

/********** HOME PAGE RESPONSIVE STYLES **********/

/* Custom styles for News and Events carousel titles */
.news-carousel .news-card .card-title {
    line-height: 1.4;
    min-height: 2.8em; /* Ensures consistent height for multi-line titles */
}

/* Responsive line height adjustments */
@media (max-width: 768px) {
    .news-carousel .news-card .card-title {
        line-height: 1.3;
        min-height: 2.6em;
    }
}

/* Mobile responsive styles for News and Events section */
@media (max-width: 768px) {
    .featured-news {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-content {
        order: 2;
        width: 100%;
        text-align: center;
    }
    
    .featured-image-container {
        order: 1;
        width: 100%;
        height: 250px;
    }
    
    .featured-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .featured-image-bg {
        display: none;
    }
    
    .featured-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .featured-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .category-tag {
        display: inline-block;
        margin-bottom: 15px;
    }
}

/* Mobile responsive styles for Travelite section */
@media (max-width: 768px) {
    .travelite-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .travelite-container {
        flex-direction: column;
    }
    
    .travelite-content {
        order: 1;
        width: 100%;
    }
    
    .travelite-image {
        order: 2;
        width: 100%;
        text-align: center;
    }
    
    .travelite-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .travelite-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .travelite-badge {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .featured-news {
        gap: 15px;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .featured-content p {
        font-size: 0.9rem;
    }
    
    .featured-image-container {
        height: 200px;
    }
    
    .travelite-section {
        gap: 15px;
    }
    

}

/********** END HOME PAGE RESPONSIVE STYLES **********/

.wpcf7-submit {
    background: var(--primary-gold);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.wpcf7-submit:hover {
    background: var(--dark-gold);   
}