/*
 Theme Name:   Green Apple Travel
 Theme URI:    https://greenappletravel.jp
 Description:  Child theme for Astra
 Author:       Muhammad Mubeen
 Author URI:   https://greenappletravel.jp
 Template:     astra
 Version:      1.0.0
 Text Domain:  astra-child
*/

/* Your custom styles below */

/* ============================================
   VARIABLES & RESET
   ============================================ */

:root {
    --primary-color: #2ecc71;
    --primary-dark: #27ae60;
    --primary-light: #d5f4e6;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #ddd;
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition-speed: 0.3s;
}

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

span.site-title {
    /* display: none; */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 42px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   COMMON CLASSES
   ============================================ */

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

section {
    padding: 60px 20px;
}

section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0.8;
}

img.loaded {
    opacity: 1;
    transition: opacity var(--transition-speed) ease;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ============================================
   HEADER & NAVIGATION (FIXED)
   ============================================ */

.site-header {
    background: white;
    padding: 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    gap: 20px;
}

.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    min-width: 180px;
}

.site-logo a,
.site-logo img {
    display: block;
    height: 45px;
    width: auto;
    transition: all var(--transition-speed) ease;
}

.site-logo a:hover,
.site-logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-text:hover {
    color: var(--primary-dark);
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 70px;
}

.primary-menu li {
    height: 100%;
    display: flex;
    align-items: center;
}

.primary-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    height: 70px;
    display: flex;
    align-items: center;
    transition: all var(--transition-speed) ease;
    position: relative;
    border-bottom: 3px solid transparent;
    font-size: 15px;
}

.primary-menu a:hover {
    color: var(--primary-color);
    background: rgba(46, 204, 113, 0.05);
    border-bottom-color: var(--primary-color);
}

.primary-menu li.current-menu-item > a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(46, 204, 113, 0.05);
}

.primary-menu li.current-menu-ancestor > a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Submenu Styling - FIXED */
.primary-menu ul {
    position: absolute;
    top: 70px;
    left: 0;
    background: white;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    min-width: 220px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-speed) ease;
}

.primary-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu ul li {
    height: auto;
    width: 100%;
    display: block;
}

.primary-menu ul a {
    padding: 14px 20px;
    height: auto;
    border: none;
    border-left: 4px solid transparent;
    width: 100%;
    background: white;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
}

.primary-menu ul a:hover {
    background: var(--light-color);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.primary-menu ul li.current-menu-item > a {
    background: var(--light-color);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

/* Third level submenu */
.primary-menu ul ul {
    top: 0;
    left: 100%;
    transform: translateX(-20px);
}

.primary-menu ul li:hover > ul {
    transform: translateX(0);
}

.auth-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

.auth-buttons a {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all var(--transition-speed) ease;
}

.auth-buttons .btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 18px;
}

.auth-buttons .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.auth-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
}

.auth-buttons .btn-primary:hover {
    background: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all var(--transition-speed) ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-md);
    z-index: 99;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-menu-list a {
    display: block;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all var(--transition-speed) ease;
    font-weight: 500;
}

.mobile-menu-list a:hover,
.mobile-menu-list li.current-menu-item > a {
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
    padding-left: 30px;
}

/* ============================================
   HERO SLIDER (HOME PAGE)
   ============================================ */

.hero-slider {
    height: 550px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #89ca56 0%, #89ca56 100%);
    padding:0px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center !important;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after, .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    font-size:20px;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

.slide-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.swiper-button-prev,
.swiper-button-next {
    color: white;
    background: rgba(0, 0, 0, 0.4);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
}

/* ============================================
   WELCOME SECTION
   ============================================ */

.welcome-section {
    background: var(--light-color);
    padding: 80px 20px;
}

.welcome-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--dark-color);
    text-align: left;
}

.welcome-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.welcome-image svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 80px 20px;
    background: white;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 25px;
    display: block;
    line-height: 1;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   FEATURED PRODUCTS SECTION
   ============================================ */

.featured-products-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.featured-products-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: var(--light-color);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
    border: 1px solid #e8e8e8;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 2px solid #e8e8e8;
    padding-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    color: var(--dark-color);
    font-size: 15px;
}

.author-info span {
    color: var(--text-light);
    font-size: 13px;
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.why-us-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.why-us-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-us-image svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
}

.why-us-text h3 {
    font-size: 36px;
    margin-bottom: 35px;
    color: var(--dark-color);
}

.why-us-list {
    list-style: none;
}

.why-us-list li {
    padding: 18px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-bottom: 1px solid #e8e8e8;
}

.why-us-list li:last-child {
    border-bottom: none;
}

.why-us-list i {
    color: var(--primary-color);
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-us-list strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.why-us-list span {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 80px 20px;
    background: white;
}

.features-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.feature-box {
    background: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
    border: 1px solid #f0f0f0;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.feature-box i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-box p {
    font-size: 15px;
    color: var(--text-light);
}

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

.site-footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 18px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-menu,
.footer-destinations {
    list-style: none;
}

.footer-menu li,
.footer-destinations li {
    margin-bottom: 12px;
}

.footer-menu a,
.footer-destinations a {
    color: #ccc;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-menu a:hover,
.footer-destinations a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    margin-bottom: 15px;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.footer-bottom a {
    color: var(--primary-color);
}

body.home .site-content .ast-container {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
}

/* ============================================
About us page */
.gat-page *, .gat-page *::before, .gat-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.gat-page { font-family: 'Segoe UI', Arial, sans-serif; color: #444; font-size: 14px; line-height: 1.8; }
.gat-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== BREADCRUMB ===== */
.gat-breadcrumb {
    background: #f5f5f5;
    padding: 18px 0;
    border-bottom: 1px solid #eaeaea;
}
.gat-breadcrumb h1 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.gat-breadcrumb nav {
    font-size: 13px;
    color: #999;
}
.gat-breadcrumb nav a {
    color: #5ab031;
    text-decoration: none;
}
.gat-breadcrumb nav a:hover { text-decoration: underline; }

/* ===== ABOUT SECTION ===== */
.gat-about {
    padding: 60px 0 70px;
}
.gat-about-head {
    text-align: center;
    margin-bottom: 44px;
}
.gat-about-head h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}
.gat-about-head .tagline {
    font-size: 16px;
    font-weight: 600;
    color: #5ab031;
    margin-bottom: 10px;
}
.gat-about-head .intro {
    font-size: 14px;
    color: #777;
    max-width: 660px;
    margin: 0 auto;
}

.gat-about-body {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
.gat-about-text { flex: 1; }
.gat-about-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
}
.gat-about-text p {
    color: #666;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.85;
}
.gat-about-img { flex: 1; }
.gat-about-img img {
    width: 100%;
    border-radius: 6px;
    display: block;
    object-fit: cover;
}

.gat-btn {
    display: inline-block;
    background: #5ab031;
    color: #fff;
    padding: 11px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: background .25s;
}
.gat-btn:hover { background: #4a9428; color: #fff; }

/* ===== WHY CHOOSE US ===== */
.gat-why {
    background: #fff;
    padding: 60px 0 70px;
    border-top: 1px solid #f0f0f0;
}
.gat-why-head {
    text-align: center;
    margin-bottom: 10px;
}
.gat-why-head h2 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gat-why-underline {
    width: 50px; height: 3px;
    background: #5ab031;
    margin: 10px auto 14px;
}
.gat-why-sub {
    text-align: center;
    font-size: 13px;
    color: #888;
    max-width: 600px;
    margin: 0 auto 50px;
}

.gat-why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.gat-why-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 10px 20px 20px;
}
.gat-why-item .icon {
    font-size: 38px;
    margin-bottom: 14px;
    display: block;
}
.gat-why-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.gat-why-item p {
    font-size: 13px;
    color: #777;
    line-height: 1.75;
}

/* ===== HOW WE SERVE ===== */
.gat-serve {
    background: #fff;
    padding: 60px 0 80px;
    border-top: 1px solid #f0f0f0;
}
.gat-serve-head { text-align: center; margin-bottom: 10px; }
.gat-serve-head h2 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gat-serve-underline {
    width: 50px; height: 3px;
    background: #5ab031;
    margin: 10px auto 50px;
}

/* Timeline */
.gat-timeline { position: relative; }
.gat-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    border-left: 2px dashed #ccc;
    transform: translateX(-50%);
}

.gat-tl-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    gap: 0;
}

/* dot on the line */
.gat-tl-dot {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 3px solid #5ab031;
    background: #fff;
    z-index: 2;
}
.gat-tl-dot.filled {
    background: #5ab031;
}

/* content side */
.gat-tl-content {
    flex: 1;
    padding: 0 60px 0 0;
    text-align: right;
}
.gat-tl-row.right .gat-tl-content {
    padding: 0 0 0 60px;
    text-align: left;
    order: 2;
}

/* image side */
.gat-tl-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.12;
    padding: 0 30px;
}
.gat-tl-row.right .gat-tl-img {
    order: 1;
    padding: 0 30px;
}
.gat-tl-img img {
    max-height: 110px;
    width: auto;
}

.gat-tl-content .step-tag {
    font-size: 11px;
    font-weight: 700;
    color: #5ab031;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: block;
}
.gat-tl-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #5ab031;
    margin-bottom: 4px;
}
.gat-tl-content .step-sub {
    font-size: 11px;
    color: #aaa;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.gat-tl-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

/* bottom dot row */
.gat-tl-end {
    display: flex;
    justify-content: center;
}
.gat-tl-end-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #5ab031;
    display: block;
}

/* ===== CONTACT BAR ===== */
.gat-contact-bar {
    background: #fafafa;
    border-top: 1px solid #eee;
    padding: 40px 0;
}
.gat-contact-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.gat-contact-details { display: flex; flex-wrap: wrap; gap: 24px; }
.gat-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
}
.gat-contact-item .ci-icon {
    font-size: 16px;
    color: #5ab031;
    margin-top: 2px;
    min-width: 18px;
}
.gat-contact-item a { color: #555; text-decoration: none; }
.gat-contact-item a:hover { color: #5ab031; }
.gat-contact-item strong { display: block; color: #333; }

/* Got a question box */
.gat-question-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 24px 30px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    min-width: 220px;
    position: relative;
}
.gat-question-box::before {
    content: '';
    display: inline-block;
    width: 44px; height: 44px;
    background: #f0f0f0;
    border-radius: 50%;
    position: absolute;
    top: -22px; left: 50%;
    transform: translateX(-50%);
}
.gat-question-box p {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.gat-question-box small {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 14px;
}
.gat-question-box .gat-btn {
    font-size: 14px;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .gat-about-body { flex-direction: column-reverse; }
    .gat-timeline::before { left: 16px; }
    .gat-tl-row, .gat-tl-row.right { flex-direction: column; padding-left: 40px; }
    .gat-tl-dot { left: 16px; top: 8px; transform: none; }
    .gat-tl-content, .gat-tl-row.right .gat-tl-content { text-align: left; padding: 0; order: 1; }
    .gat-tl-img, .gat-tl-row.right .gat-tl-img { display: none; }
    .gat-why-item { max-width: 100%; }
}
/* ============================================
End About us page */

/* ===== Contact Us page ===== */
.gct-page *, .gct-page *::before, .gct-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.gct-page { width:100%;  }
.gct-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== BREADCRUMB ===== */
.gct-breadcrumb {
    background: #f5f5f5;
    padding: 18px 0;
    border-bottom: 1px solid #eaeaea;
}
.gct-breadcrumb h1 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.gct-breadcrumb nav {
    font-size: 13px;
    color: #999;
}
.gct-breadcrumb nav a {
    color: #5ab031;
    text-decoration: none;
}
.gct-breadcrumb nav a:hover { text-decoration: underline; }

/* ===== MAIN WRAPPER ===== */
.gct-main {
    padding: 60px 0 70px;
}
.gct-inner {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* ===== LEFT – FORM COLUMN ===== */
.gct-left { flex: 1; min-width: 280px; }

/* Contact Form 7 field overrides */
.gct-left .wpcf7-form p { margin-bottom: 0; }

.gct-field {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 14px 16px;
    font-size: 14px;
    color: #555;
    background: #fff;
    outline: none;
    transition: border-color .25s;
    margin-bottom: 14px;
    display: block;
    font-family: inherit;
}
.gct-field:focus { border-color: #5ab031; }
.gct-field::placeholder { color: #aaa; }

textarea.gct-field {
    resize: vertical;
    min-height: 180px;
}

/* CF7 override to match our field style */
.gct-left .wpcf7 input[type="text"],
.gct-left .wpcf7 input[type="email"],
.gct-left .wpcf7 textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 14px 16px;
    font-size: 14px;
    color: #555;
    background: #fff;
    outline: none;
    transition: border-color .25s;
    margin-bottom: 14px;
    display: block;
    font-family: inherit;
    box-shadow: none;
}
.gct-left .wpcf7 input[type="text"]:focus,
.gct-left .wpcf7 input[type="email"]:focus,
.gct-left .wpcf7 textarea:focus { border-color: #5ab031; }

.gct-left .wpcf7 textarea { resize: vertical; min-height: 180px; }

/* Submit button */
.gct-left .wpcf7 input[type="submit"],
.gct-submit-btn {
    background: #5ab031;
    color: #fff;
    border: none;
    padding: 13px 34px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    transition: background .25s;
    font-family: inherit;
}
.gct-left .wpcf7 input[type="submit"]:hover,
.gct-submit-btn:hover { background: #4a9428; }

/* CF7 validation */
.gct-left .wpcf7-not-valid-tip { font-size: 12px; color: #e74c3c; margin-top: -10px; margin-bottom: 8px; display: block; }
.gct-left .wpcf7-response-output { margin-top: 16px; font-size: 13px; border-radius: 4px; clear: both; }

/* ===== CONTACT INFO BELOW FORM ===== */
.gct-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    clear: both;
}
.gct-info-col { display: flex; flex-direction: column; gap: 14px; }

.gct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: #555;
}
.gct-info-item .ii-icon {
    font-size: 17px;
    color: #5ab031;
    margin-top: 2px;
    min-width: 20px;
}
.gct-info-item a { color: #5ab031; text-decoration: none; }
.gct-info-item a:hover { text-decoration: underline; }
.gct-info-item span { line-height: 1.6; }

/* Social icons */
.gct-social { display: flex; gap: 10px; margin-top: 4px; }
.gct-social a {
    width: 36px; height: 36px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 15px;
    text-decoration: none;
    transition: border-color .25s, color .25s;
}
.gct-social a:hover { border-color: #5ab031; color: #5ab031; }

/* ===== RIGHT COLUMN ===== */
.gct-right { width: 340px; min-width: 280px; display: flex; flex-direction: column; gap: 0; }

/* Need to ask something box */
.gct-ask-box { margin-bottom: 30px; }
.gct-ask-box h2 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}
.gct-ask-underline {
    width: 50px; height: 3px;
    background: #5ab031;
    margin-bottom: 16px;
}
.gct-ask-box .ask-desc {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
}
.gct-ask-box .ask-body {
    font-size: 13px;
    color: #777;
    line-height: 1.8;
}

/* Got a question card */
.gct-question-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 28px 28px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    min-height: 220px;
}
.gct-question-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}
.gct-question-underline {
    width: 44px; height: 3px;
    background: #5ab031;
    margin-bottom: 12px;
}
.gct-question-card .q-sub {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
}
.gct-question-card .q-btn {
    display: inline-block;
    background: #5ab031;
    color: #fff;
    padding: 13px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: background .25s;
    margin-bottom: 0;
}
.gct-question-card .q-btn:hover { background: #4a9428; }

/* Woman image positioned bottom-right */
.gct-question-card .q-woman {
    position: absolute;
    right: -10px;
    bottom: 0;
    height: 200px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
    .gct-inner { flex-direction: column; }
    .gct-right { width: 100%; }
    .gct-question-card .q-woman { height: 160px; }
}
@media (max-width: 500px) {
    .gct-info { flex-direction: column; }
    .gct-left .wpcf7 input[type="submit"],
    .gct-submit-btn { float: none; width: 100%; text-align: center; }
}
/* ===== contact us ===== */

/* ============================================
   Woocommerce Product detail
   ============================================ */
   
body.single-product div#primary {
    padding-left: 45px;
    padding-right: 45px;
}
   
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .header-container {
        height: 65px;
    }

    .primary-menu {
        height: 65px;
    }

    .primary-menu a {
        height: 65px;
        padding: 10px 15px;
        font-size: 14px;
    }

    .primary-menu ul {
        top: 65px;
    }

    h1 { font-size: 36px; }
    h2 { font-size: 32px; }

    .welcome-content,
    .why-us-content {
        grid-template-columns: 1fr;
    }

    .slide-content h1 {
        font-size: 42px;
    }

    section {
        padding: 50px 20px;
    }

    section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 60px;
        gap: 10px;
    }

    .site-logo {
        min-width: auto;
    }

    .main-navigation {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        position: fixed;
        top: 60px;
        right: 0;
        width: 100%;
    }

    .hero-slider {
        height: 350px;
    }

    .slide-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 16px;
    }

    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }

    section {
        padding: 40px 20px;
    }

    section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .welcome-content,
    .why-us-content {
        gap: 30px;
    }

    .welcome-text h2,
    .why-us-text h3 {
        font-size: 28px;
    }

    .services-grid,
    .testimonials-grid,
    .features-grid {
        gap: 20px;
    }

    .service-card,
    .feature-box {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .footer-container {
        gap: 30px;
    }
}

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

    .logo-text {
        font-size: 18px;
    }

    .auth-buttons a {
        padding: 8px 12px;
        font-size: 12px;
    }

    h1 { font-size: 22px; }
    h2 { font-size: 20px; }
    h3 { font-size: 18px; }

    .hero-slider {
        height: 280px;
    }

    .slide-content h1 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 14px;
    }

    section {
        padding: 30px 15px;
    }

    .container {
        padding: 0 15px;
    }

    .services-grid,
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .welcome-content,
    .why-us-content {
        gap: 20px;
    }

    .service-card,
    .feature-box,
    .testimonial-card {
        padding: 20px;
    }

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

/* ============================================
   SEO & ACCESSIBILITY
   ============================================ */

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   PERFORMANCE & ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle {
        display: none;
    }

    a {
        text-decoration: underline;
    }

    img {
        max-width: 100%;
    }
}


.site-footer {
	background: #1a1a1a;
	color: white;
	padding: 60px 20px 20px;
	margin-top: 80px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 30px;
}

.footer-section h3 {
	margin-bottom: 20px;
	color: #2ecc71;
	font-size: 18px;
}

.footer-section p {
	color: #ccc;
	line-height: 1.6;
}

.footer-menu,
.footer-destinations {
	list-style: none;
}

.footer-menu li,
.footer-destinations li {
	margin-bottom: 10px;
}

.footer-menu a,
.footer-destinations a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-menu a:hover,
.footer-destinations a:hover {
	color: #2ecc71;
}

.footer-contact {
	margin-bottom: 15px;
}

.footer-contact a {
	color: #2ecc71;
	text-decoration: none;
	font-weight: 500;
}

.footer-contact a:hover {
	text-decoration: underline;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 20px;
	text-align: center;
	color: #999;
}

.footer-bottom a {
	color: #2ecc71;
	text-decoration: none;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.footer-container {
		gap: 30px;
	}

	.site-footer {
		padding: 40px 20px 20px;
	}
}