/*
Theme Name: JetTEAM
Theme URI: https://jet-team.co.uk
Author: JetTEAM Development
Author URI: https://jet-team.co.uk
Description: A premium WordPress theme for JetTEAM, a private aviation company specializing in bespoke flight planning, aircraft charter, and VIP travel services. Built with elegance, performance, and clarity in mind.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jetteam
Tags: aviation, business, corporate, one-page, custom-header, custom-menu, featured-images, theme-options
*/


/* ==========================================================================
   TABLE OF CONTENTS
   ==========================================================================
   1.  CSS Reset & Base
   2.  Typography
   3.  Utility Classes
   4.  Buttons
   5.  Links
   6.  Top Bar
   7.  Header & Navigation
   8.  Mobile Navigation
   9.  Hero Banner
   10. Services Section
   11. About JET TEAM Section
   12. Going the Extra Mile Section
   13. We Plan You Fly Section
   14. Testimonials Section
   15. Get In Touch / Contact Section
   16. Footer
   17. Responsive — 1200px
   18. Responsive — 992px
   19. Responsive — 768px
   20. Responsive — 576px
   21. Animations & Transitions
   22. Accessibility
   ========================================================================== */


/* ==========================================================================
   1. CSS RESET & BASE
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Koh+Santepheap:wght@400;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #252525;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul,
ol {
    list-style: none;
}

input,
textarea,
button,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    outline: none;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

::selection {
    background-color: #b2762a;
    color: #ffffff;
}

::-moz-selection {
    background-color: #b2762a;
    color: #ffffff;
}


/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.3;
    color: #252525;
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.85rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

p:last-child {
    margin-bottom: 0;
}

strong, b {
    font-weight: 700;
}

em, i {
    font-style: italic;
}


/* ==========================================================================
   3. UTILITY CLASSES
   ========================================================================== */

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

.section-padding {
    padding: 80px 0;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-white {
    color: #ffffff;
}

.text-gold {
    color: #b2762a;
}

.bg-white {
    background-color: #ffffff;
}

.bg-cream {
    background-color: #f9f6f1;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

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

.section-heading-left {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
}

.section-heading-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #b2762a;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
}

.col-2 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-3 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.col-4 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.d-flex {
    display: flex;
}

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


/* ==========================================================================
   4. BUTTONS
   ========================================================================== */

.btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 30px;
    border-radius: 25px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.5;
    white-space: nowrap;
}

.btn-primary {
    background-color: #b2762a;
    color: #ffffff;
    border-color: #b2762a;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: transparent;
    color: #b2762a;
    border-color: #b2762a;
}

.btn-outline {
    background-color: transparent;
    color: #b2762a;
    border-color: #b2762a;
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: #b2762a;
    color: #ffffff;
    border-color: #b2762a;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background-color: #ffffff;
    color: #b2762a;
    border-color: #ffffff;
}

.btn-white {
    background-color: #ffffff;
    color: #b2762a;
    border-color: #ffffff;
}

.btn-white:hover,
.btn-white:focus {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-sm {
    padding: 8px 22px;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1rem;
}


/* ==========================================================================
   5. LINKS
   ========================================================================== */

.link-gold {
    color: #b2762a;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.link-gold::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #b2762a;
    transition: width 0.3s ease;
}

.link-gold:hover::after {
    width: 100%;
}

.link-gold:hover {
    color: #95611e;
}

.link-arrow {
    color: #b2762a;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.link-arrow::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    color: #95611e;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}


/* ==========================================================================
   6. TOP BAR
   ========================================================================== */

.top-bar {
    background-color: #f9f6f1;
    padding: 8px 0;
    font-size: 0.8125rem;
    color: #252525;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-contact a {
    color: #252525;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    transition: color 0.3s ease;
}

.top-bar-contact a:hover {
    color: #b2762a;
}

.top-bar-contact .separator {
    color: #cccccc;
    font-weight: 300;
}

.top-bar-contact i,
.top-bar-contact .icon {
    color: #b2762a;
    font-size: 0.875rem;
}


/* ==========================================================================
   7. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
    background-color: #ffffff;
    padding: 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    display: inline-block;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.site-logo .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #252525;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.site-logo .logo-text .logo-jet {
    font-weight: 700;
    color: #252525;
}

.site-logo .logo-text .logo-team {
    font-weight: 400;
    color: #252525;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    padding: 10px 15px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #252525;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #b2762a;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    color: #b2762a;
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after {
    transform: scaleX(1);
}

/* Sub-menu / Dropdown */
.nav-menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #ffffff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
}

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

.nav-menu li .sub-menu li a {
    padding: 8px 20px;
    font-size: 0.8125rem;
    white-space: nowrap;
}

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

.nav-menu li .sub-menu li a:hover {
    background-color: #f9f6f1;
    color: #b2762a;
}

.nav-cta {
    margin-left: 15px;
}

.nav-cta .btn {
    padding: 10px 25px;
    font-size: 0.8125rem;
}


/* ==========================================================================
   8. MOBILE NAVIGATION
   ========================================================================== */

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

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #252525;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}


/* ==========================================================================
   9. HERO BANNER
   ========================================================================== */

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-tagline {
    font-family: 'Koh Santepheap', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounceDown 2s infinite;
}

.hero-scroll-indicator a {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.hero-scroll-indicator a::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 28px;
    }
}


/* ==========================================================================
   10. SERVICES SECTION
   ========================================================================== */

.services-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.service-card-content {
    padding: 30px 25px 40px;
}

.service-card-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    color: #252525;
}

.service-card-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.service-card-content .link-gold {
    font-size: 0.8125rem;
}

/* Gold triangle accent — bottom-left corner of the image */
.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 0 0 50px;
    border-color: transparent transparent transparent #b2762a;
    transition: border-width 0.3s ease;
}

.service-card:hover .service-card-image::after {
    border-width: 60px 0 0 60px;
}


/* ==========================================================================
   11. ABOUT JET TEAM SECTION
   ========================================================================== */

.about-section {
    background-color: #f9f6f1;
    padding: 80px 0;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-content .section-heading-left {
    color: #252525;
}

.about-content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 25px;
}

.about-content .btn {
    margin-top: 10px;
}


/* ==========================================================================
   12. GOING THE EXTRA MILE SECTION
   ========================================================================== */

.extra-mile-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.extra-mile-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.extra-mile-content {
    flex: 0 0 50%;
    max-width: 50%;
    order: 1;
}

.extra-mile-image {
    flex: 0 0 50%;
    max-width: 50%;
    order: 2;
}

.extra-mile-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.extra-mile-content .section-heading-left {
    color: #252525;
}

.extra-mile-content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 25px;
}

.extra-mile-content .btn {
    margin-top: 10px;
}


/* ==========================================================================
   13. WE PLAN YOU FLY SECTION
   ========================================================================== */

.weplan-section {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a1a2e;
    overflow: hidden;
}

.weplan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.weplan-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 20px;
    width: 100%;
}

.weplan-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.weplan-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.weplan-content .tagline {
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
}


/* ==========================================================================
   14. TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
    position: relative;
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-section > .container {
    position: relative;
}

.testimonials-section .section-heading {
    color: #252525;
}

.testimonials-section .section-heading::after {
    background-color: #b2762a;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 4px;
    padding: 40px 30px 35px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-quote-mark {
    font-size: 4rem;
    line-height: 1;
    color: #b2762a;
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 5px;
    display: block;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 0.9375rem;
    font-style: italic;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.testimonial-attribution {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #252525;
}

.testimonial-attribution span {
    display: block;
    font-weight: 400;
    font-size: 0.8125rem;
    color: #888888;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 3px;
}

.testimonial-stars {
    color: #b2762a;
    font-size: 0.875rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}


/* ==========================================================================
   15. GET IN TOUCH / CONTACT SECTION
   ========================================================================== */

.contact-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #b2762a;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(178, 118, 42, 0.9) 0%,
        rgba(37, 37, 37, 0.8) 100%
    );
    z-index: 1;
}

.contact-section > .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.contact-info {
    flex: 0 0 40%;
    max-width: 40%;
}

.contact-info h2 {
    font-size: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ffffff;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item i,
.contact-info-item .icon {
    color: #ffffff;
    font-size: 1.125rem;
    margin-top: 3px;
    flex-shrink: 0;
    opacity: 0.8;
}

.contact-info-item p,
.contact-info-item a {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-item a:hover {
    opacity: 0.8;
}

.contact-form-wrapper {
    flex: 0 0 55%;
    max-width: 55%;
}

.contact-form {
    width: 100%;
}

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

.form-group {
    margin-bottom: 25px;
    width: 100%;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 0.9375rem;
    color: #252525;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b2762a;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form .btn {
    margin-top: 10px;
}

/* Gold submit button for contact form */
.contact-form .btn-white {
    background-color: #b2762a;
    color: #ffffff;
    border-color: #b2762a;
}

.contact-form .btn-white:hover,
.contact-form .btn-white:focus {
    background-color: transparent;
    color: #b2762a;
    border-color: #b2762a;
}

/* Form validation states */
.form-group.error input,
.form-group.error textarea {
    border-bottom-color: #e74c3c;
}

.form-group .error-message {
    font-size: 0.75rem;
    color: #e74c3c;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-success {
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    font-size: 1.125rem;
}

/* WPCF7 compatibility */
.wpcf7 .wpcf7-form-control-wrap {
    display: block;
}

.wpcf7 input.wpcf7-form-control,
.wpcf7 textarea.wpcf7-form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 0.9375rem;
    color: #252525;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.wpcf7 input.wpcf7-form-control:focus,
.wpcf7 textarea.wpcf7-form-control:focus {
    border-color: #b2762a;
}

.wpcf7 input.wpcf7-submit {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 30px;
    border-radius: 25px;
    background-color: #b2762a;
    color: #ffffff;
    border: 2px solid #b2762a;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.wpcf7 input.wpcf7-submit:hover {
    background-color: transparent;
    color: #b2762a;
}

.wpcf7 .wpcf7-not-valid-tip {
    font-size: 0.75rem;
    color: #e74c3c;
    margin-top: 5px;
}

.wpcf7 .wpcf7-response-output {
    border: none !important;
    padding: 15px 0;
    color: #ffffff;
    font-size: 0.875rem;
    text-align: center;
}


/* ==========================================================================
   16. FOOTER
   ========================================================================== */

.site-footer {
    background-color: #252525;
    color: #cccccc;
    padding: 60px 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1 1 0;
    min-width: 0;
}

.footer-col:first-child {
    flex: 1.2 1 0;
}

/* Footer — Company Info Column */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-logo .logo-text .logo-jet {
    font-weight: 700;
    color: #ffffff;
}

.footer-logo .logo-text .logo-team {
    font-weight: 400;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #aaaaaa;
    margin-bottom: 10px;
}

.footer-codes {
    margin-top: 15px;
}

.footer-codes span {
    display: block;
    font-size: 0.8125rem;
    color: #888888;
    margin-bottom: 5px;
}

.footer-codes strong {
    color: #cccccc;
}

/* Footer — Quick Links Column */
.footer-col h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #b2762a;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links-col {
    flex: 1;
}

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

.footer-links-col li a {
    font-size: 0.875rem;
    color: #aaaaaa;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-col li a:hover {
    color: #b2762a;
    transform: translateX(3px);
}

/* Footer — Contact Us Column */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i,
.footer-contact-item .icon {
    color: #b2762a;
    font-size: 0.875rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-item p,
.footer-contact-item a {
    font-size: 0.875rem;
    color: #aaaaaa;
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: #b2762a;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #aaaaaa;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #b2762a;
    border-color: #b2762a;
    color: #ffffff;
}

/* Footer Bottom Bar */
.footer-bottom {
    padding: 20px 0;
    margin-top: 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #888888;
    margin-bottom: 0;
}

.footer-bottom a {
    color: #b2762a;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #d4943a;
}


/* ==========================================================================
   17. RESPONSIVE — 1200px
   ========================================================================== */

@media (max-width: 1200px) {

    .container {
        max-width: 960px;
    }

    .hero-tagline {
        font-size: 3rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2,
    .section-heading,
    .section-heading-left {
        font-size: 1.75rem;
    }

    .about-grid,
    .extra-mile-grid {
        gap: 40px;
    }

    .contact-grid {
        gap: 40px;
    }

}


/* ==========================================================================
   18. RESPONSIVE — 992px
   ========================================================================== */

@media (max-width: 992px) {

    .container {
        max-width: 720px;
    }

    /* Navigation — switch to hamburger */
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

    .main-navigation.open {
        right: 0;
    }

    .mobile-nav-overlay {
        display: block;
        pointer-events: none;
    }

    .mobile-nav-overlay.active {
        pointer-events: all;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li a {
        padding: 14px 0;
        font-size: 0.9375rem;
    }

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

    .nav-menu li .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 20px;
        display: none;
    }

    .nav-menu li .sub-menu.open {
        display: block;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .nav-cta .btn {
        display: block;
        text-align: center;
    }

    /* Hero */
    .hero-banner {
        min-height: 500px;
        height: 60vh;
    }

    .hero-tagline {
        font-size: 2.5rem;
    }

    /* Services */
    .service-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    /* About */
    .about-grid {
        flex-direction: column;
        gap: 40px;
    }

    .about-image,
    .about-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Extra Mile */
    .extra-mile-grid {
        flex-direction: column;
        gap: 40px;
    }

    .extra-mile-content {
        flex: 0 0 100%;
        max-width: 100%;
        order: 1;
    }

    .extra-mile-image {
        flex: 0 0 100%;
        max-width: 100%;
        order: 2;
    }

    /* We Plan You Fly */
    .weplan-section {
        background-attachment: scroll;
    }

    .weplan-content h2 {
        font-size: 2rem;
    }

    /* Testimonials */
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    /* Contact */
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info,
    .contact-form-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Footer */
    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }

    .footer-col:first-child {
        flex: 0 0 100%;
        min-width: 100%;
    }

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

    .services-section,
    .about-section,
    .extra-mile-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }

}


/* ==========================================================================
   19. RESPONSIVE — 768px
   ========================================================================== */

@media (max-width: 768px) {

    .container {
        max-width: 540px;
    }

    /* Top Bar */
    .top-bar .container {
        justify-content: center;
    }

    .top-bar-contact {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Header */
    .header-inner {
        padding: 12px 0;
    }

    .site-logo img {
        max-height: 40px;
    }

    /* Hero */
    .hero-banner {
        min-height: 420px;
        height: 55vh;
    }

    .hero-tagline {
        font-size: 2rem;
    }

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

    /* Typography */
    h1 {
        font-size: 1.75rem;
    }

    h2,
    .section-heading,
    .section-heading-left {
        font-size: 1.5rem;
        margin-bottom: 35px;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Services */
    .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .services-grid {
        gap: 25px;
    }

    .service-card-image {
        height: 200px;
    }

    /* Testimonials */
    .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .testimonials-grid {
        gap: 25px;
    }

    /* We Plan You Fly */
    .weplan-content h2 {
        font-size: 1.75rem;
    }

    .weplan-content {
        padding: 60px 20px;
    }

    /* Contact */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-col {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Section padding */
    .section-padding,
    .services-section,
    .about-section,
    .extra-mile-section,
    .testimonials-section,
    .contact-section {
        padding: 50px 0;
    }

    /* Columns */
    .col-2,
    .col-3,
    .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}


/* ==========================================================================
   20. RESPONSIVE — 576px
   ========================================================================== */

@media (max-width: 576px) {

    .container {
        padding: 0 15px;
    }

    /* Top Bar */
    .top-bar {
        font-size: 0.75rem;
        padding: 6px 0;
    }

    .top-bar-contact {
        gap: 10px;
        font-size: 0.75rem;
    }

    .top-bar-contact a {
        font-size: 0.75rem;
    }

    /* Header */
    .site-logo img {
        max-height: 35px;
    }

    .site-logo .logo-text {
        font-size: 1.25rem;
    }

    /* Hero */
    .hero-banner {
        min-height: 350px;
        height: 50vh;
    }

    .hero-tagline {
        font-size: 1.75rem;
    }

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

    .hero-cta .btn {
        display: block;
        width: 100%;
    }

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

    /* Typography */
    h1 {
        font-size: 1.5rem;
    }

    h2,
    .section-heading,
    .section-heading-left {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }

    h3 {
        font-size: 1.125rem;
    }

    /* Services */
    .service-card-content {
        padding: 25px 20px 35px;
    }

    .service-card-image {
        height: 180px;
    }

    /* About & Extra Mile */
    .about-content p,
    .extra-mile-content p {
        font-size: 0.875rem;
    }

    .about-grid,
    .extra-mile-grid {
        gap: 30px;
    }

    /* We Plan You Fly */
    .weplan-section {
        min-height: 350px;
    }

    .weplan-content h2 {
        font-size: 1.5rem;
    }

    .weplan-content p {
        font-size: 0.9375rem;
    }

    .weplan-content {
        padding: 50px 15px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 30px 20px 25px;
    }

    .testimonial-quote-mark {
        font-size: 3rem;
    }

    .testimonial-text {
        font-size: 0.875rem;
    }

    /* Contact */
    .contact-info h2 {
        font-size: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.875rem;
    }

    .form-group label {
        font-size: 0.75rem;
    }

    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 0;
    }

    .footer-bottom p {
        font-size: 0.6875rem;
    }

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

    .footer-grid {
        gap: 25px;
        padding-bottom: 25px;
    }

    /* Section padding */
    .section-padding,
    .services-section,
    .about-section,
    .extra-mile-section,
    .testimonials-section,
    .contact-section {
        padding: 40px 0;
    }

    /* Buttons */
    .btn {
        padding: 10px 25px;
        font-size: 0.8125rem;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 0.875rem;
    }

}


/* ==========================================================================
   21. ANIMATIONS & TRANSITIONS
   ========================================================================== */

/* Fade in on scroll — to be triggered by JS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }

/* Smooth link/button transitions (global) */
a,
button,
input,
textarea,
.btn {
    transition: all 0.3s ease;
}

/* Subtle image zoom on hover — for image containers */
.image-hover-zoom {
    overflow: hidden;
}

.image-hover-zoom img {
    transition: transform 0.5s ease;
}

.image-hover-zoom:hover img {
    transform: scale(1.05);
}


/* ==========================================================================
   22. ACCESSIBILITY
   ========================================================================== */

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.btn:focus-visible {
    outline: 2px solid #b2762a;
    outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #b2762a;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10000;
    border-radius: 0 0 4px 4px;
    transition: top 0.3s ease;
}

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

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

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in-up,
    .fade-in-left,
    .fade-in-right {
        opacity: 1;
        transform: none;
    }

    .hero-scroll-indicator {
        animation: none;
    }

    .hero-scroll-indicator a::before {
        animation: none;
    }

}

/* High contrast mode enhancements */
@media (prefers-contrast: high) {

    .service-card {
        border: 1px solid #252525;
    }

    .testimonial-card {
        border: 1px solid #252525;
    }

    .form-group input,
    .form-group textarea {
        border-bottom-width: 2px;
    }

    .btn {
        border-width: 3px;
    }

}


/* ==========================================================================
   WORDPRESS-SPECIFIC STYLES
   ========================================================================== */

/* WordPress Generated Classes */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #f9f6f1;
    border: 1px solid #eeeeee;
    max-width: 100%;
    padding: 5px 5px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
    padding: 5px 0 0;
    color: #888888;
}

/* WordPress gallery */
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
    font-size: 0.75rem;
    color: #888888;
    padding: 5px;
}

/* WordPress post content */
.entry-content {
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 1.5em 2em;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content li {
    margin-bottom: 0.5em;
}

.entry-content blockquote {
    margin: 1.5em 0;
    padding: 20px 30px;
    border-left: 4px solid #b2762a;
    background-color: #f9f6f1;
    font-style: italic;
}

.entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-content table {
    width: 100%;
    margin-bottom: 1.5em;
    border: 1px solid #eeeeee;
}

.entry-content table th,
.entry-content table td {
    padding: 10px 15px;
    border: 1px solid #eeeeee;
    text-align: left;
}

.entry-content table th {
    background-color: #f9f6f1;
    font-weight: 600;
}

.entry-content pre {
    background-color: #f9f6f1;
    padding: 20px;
    overflow-x: auto;
    font-size: 0.875rem;
    margin-bottom: 1.5em;
    border-radius: 4px;
}

.entry-content code {
    background-color: #f9f6f1;
    padding: 2px 6px;
    font-size: 0.875rem;
    border-radius: 3px;
}

/* WordPress pagination */
.pagination,
.post-navigation {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #252525;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: #b2762a;
    border-color: #b2762a;
    color: #ffffff;
}

/* WordPress admin bar offset */
body.admin-bar .site-header.sticky {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header.sticky {
        top: 46px;
    }
}

/* WordPress widget areas */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #b2762a;
}

.widget ul li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    font-size: 0.875rem;
    color: #555555;
}

.widget ul li a:hover {
    color: #b2762a;
}

/* Sticky header body offset */
body.has-sticky-header {
    padding-top: 80px;
}

/* Print styles */
@media print {

    .top-bar,
    .site-header,
    .hero-scroll-indicator,
    .menu-toggle,
    .mobile-nav-overlay,
    .site-footer,
    .contact-form,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000000;
        background: #ffffff;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666666;
    }

    img {
        max-width: 100% !important;
    }

    .container {
        max-width: 100%;
    }

}
