/*
Theme Name: WaveRide
Theme URI: https://waveride.qodeinteractive.com/
Author: Custom
Author URI: https://example.com
Description: A surfing and water sports theme emulated from the original WaveRide design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: waveride
Tags: one-column, custom-menu, custom-logo, featured-images, full-width-template, editor-style

Text Domain: waveride
*/

/* ========================================
   WaveRide Theme - Global Styles
   ======================================== */

/* --- CSS Variables --- */
:root {
    --color-primary: #0de3d9;
    --color-primary-hover: #0de9df;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-heading: #222222;
    --color-body-text: #858585;
    --color-footer-text: #adadad;
    --color-bg-light: #fafafa;
    --color-bg-lightest: #f7f7f7;
    --color-border: #ebebeb;

    --font-heading: 'Josefin Sans', sans-serif;
    --font-body: 'Source Sans Pro', sans-serif;
    --font-script: 'Mr Dafoe', cursive;

    --container-width: 1300px;
    --grid-gutter: 30px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-body-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.4;
    text-transform: uppercase;
}

h1 { font-size: 40px; letter-spacing: 2px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 12px; }
h6 { font-size: 11px; }

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

.container-wide {
    width: 100%;
    padding: 0 20px;
}

/* --- Grid --- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--grid-gutter) / 2);
}

.col {
    flex: 1;
    padding: 0 calc(var(--grid-gutter) / 2);
}

.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5 { flex: 0 0 41.666%; max-width: 41.666%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8 { flex: 0 0 66.666%; max-width: 66.666%; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-medium {
    padding: 14px 35px;
    font-size: 12px;
}

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

.btn-solid .btn-wave-holder {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transition: top 0.4s ease;
}

.btn-solid:hover .btn-wave-holder {
    top: 0;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-heading);
    color: var(--color-heading);
}

.btn-outline .btn-wave-holder {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transition: top 0.4s ease;
}

.btn-outline:hover .btn-wave-holder {
    top: 0;
}

.btn-outline:hover {
    color: var(--color-white);
}

.btn-wave-holder {
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='172px' height='126px' viewBox='0 0 172 125.7' xml:space='preserve'%3E%3Cpath fill='%230de3d9' d='M173,22.7c-33.9,0-44.7-14.1-88.4-14.1c-43.6,0-54.5,14.1-86,14.1V126l174.4-0.3C173,125.7,173,28.7,173,22.7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-outline .btn-wave-holder {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='172px' height='126px' viewBox='0 0 172 125.7' xml:space='preserve'%3E%3Cpath fill='%23000000' d='M173,22.7c-33.9,0-44.7-14.1-88.4-14.1c-43.6,0-54.5,14.1-86,14.1V126l174.4-0.3C173,125.7,173,28.7,173,22.7z'/%3E%3C/svg%3E");
}

/* --- Section Title --- */
.section-title {
    position: relative;
    margin-bottom: 40px;
}

.section-title h1 {
    margin-bottom: 20px;
}

.section-title .section-caption {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 28px;
    color: var(--color-body-text);
    text-transform: none;
    font-weight: 400;
}

.section-title .section-bg-text {
    font-family: var(--font-script);
    font-size: 180px;
    color: #efefef;
    position: absolute;
    top: -40px;
    left: 0;
    z-index: -1;
    line-height: 1;
}

.section-title-white h1 { color: var(--color-white); }
.section-title-white .section-caption { color: rgba(255, 255, 255, 0.7); }

/* --- Social Icons --- */
.social-icon {
    display: inline-block;
    font-size: 11px;
    color: var(--color-heading);
    transition: color 0.3s ease;
}

.social-icon:hover { color: var(--color-primary-hover); }
.social-icon-white { color: var(--color-white); }

/* --- Top Bar --- */
.top-bar {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    height: 40px;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-left h6 {
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-black);
    font-size: 14px;
    transition: color 0.3s ease;
}

.top-bar-item:hover { color: var(--color-primary-hover); }
.top-bar-item i { font-size: 14px; }

.top-bar-separator {
    width: 1px;
    height: 14px;
    background-color: var(--color-border);
}

/* --- Page Header --- */
.page-header {
    background-color: var(--color-white);
    transition: all 0.3s ease;
    z-index: 100;
    position: relative;
}

.page-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 106px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.header-right { justify-content: flex-end; }

.header-center {
    display: flex;
    align-items: center;
    height: 85px;
}

.logo {
    display: flex;
    align-items: center;
    height: 85px;
}

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

.logo-light { display: none; }

/* --- Main Menu --- */
.main-menu .menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-menu .menu > li { position: relative; }

.main-menu .menu > li > a {
    display: block;
    padding: 10px 0;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    color: var(--color-heading);
    transition: color 0.3s ease;
}

.main-menu .menu > li > a:hover,
.main-menu .menu > li.current-menu-item > a {
    color: var(--color-primary);
}

.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.main-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-heading);
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.main-menu .sub-menu li a:hover {
    color: var(--color-primary);
    padding-left: 25px;
}

.main-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

/* --- Header Widgets --- */
.header-widget-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon-widget {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-heading);
    transition: color 0.3s ease;
    cursor: pointer;
}

.header-icon-widget:hover { color: var(--color-primary); }
.header-icon-widget i { font-size: 16px; }

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    background-color: var(--color-heading);
    transition: all 0.3s ease;
}

/* --- Search Overlay --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--color-heading);
    padding-bottom: 10px;
    width: 600px;
    max-width: 90%;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-heading);
    background: transparent;
    padding: 10px 0;
}

.search-input::placeholder { color: var(--color-body-text); }

.search-submit {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--color-heading);
}

.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 36px;
    color: var(--color-heading);
    cursor: pointer;
}

/* --- Side Menu --- */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -540px;
    width: 540px;
    height: 100%;
    background-color: var(--color-white);
    z-index: 9998;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.side-menu.active { right: 0; }

.side-menu-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px;
    position: relative;
}

.side-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--color-heading);
    cursor: pointer;
    z-index: 1;
}

.side-menu-logo { margin-bottom: 30px; }
.side-menu-logo img { max-height: 50px; }

.side-menu-content h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.side-menu-content p {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 30px;
}

.side-menu-contact { margin-bottom: 30px; }

.side-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-heading);
}

.side-menu-item:hover { color: var(--color-primary); }

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

.side-menu-social .social-icon { font-size: 16px; }

.side-menu-wave {
    margin-top: auto;
    text-align: center;
}

.side-menu-wave svg {
    width: 200px;
    height: auto;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg {
    width: 50px;
    height: 50px;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: rotate(180deg) translateY(-5px);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-heading);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ========================================
   Section Styles (merged)
   ======================================== */

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    background-color: #4bd5cd;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

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

.slider-static-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.surfer-illustration {
    text-align: center;
    transform: rotateX(-70deg);
    animation: surferEntrance 1.5s ease-in-out forwards;
}

@keyframes surferEntrance {
    to { transform: rotateX(0deg); }
}

.surfer-illustration img {
    max-width: 380px;
    margin: 0 auto;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.slider-nav:hover { color: var(--color-primary); }
.slider-prev { left: 40px; }
.slider-next { right: 40px; }

.slider-bullets {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e1e1e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-bullet.active {
    background-color: var(--color-primary);
    transform: scale(1.25);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-white);
}

.scroll-wave {
    width: 60px;
    height: 30px;
    margin: 10px auto 0;
    border: 2px solid var(--color-white);
    border-radius: 15px;
    position: relative;
}

.scroll-wave::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 5px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

/* Services */
.services-section { overflow: hidden; }
.services-grid { display: flex; flex-wrap: wrap; }
.service-banner { flex: 0 0 25%; position: relative; overflow: hidden; }
.service-banner-image { width: 100%; height: 100%; min-height: 400px; }
.service-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-banner:hover .service-banner-image img { transform: scale(1.05); }

.service-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.service-banner-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    width: 100%;
}

.service-banner-info h2 { font-size: 18px; margin-bottom: 8px; color: var(--color-heading); }
.service-banner-info h3 { font-size: 22px; color: var(--color-primary); margin-bottom: 5px; }
.service-banner-info h5 { font-size: 11px; color: var(--color-body-text); }

.service-banner-link {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10;
}

/* Video Section */
.video-content-section { position: relative; }
.video-holder { position: relative; }
.video-link { display: block; position: relative; cursor: pointer; }
.video-link img { width: 100%; }

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-heading);
    transition: all 0.3s ease;
}

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

.content-text {
    display: flex;
    align-items: center;
    padding-left: 40px;
}

/* Image Showcase */
.image-showcase-section { overflow: hidden; }

/* Events */
.events-section { padding: 125px 0; }
.events-grid { display: flex; flex-direction: column; gap: 30px; }
.event-item { display: flex; gap: 40px; align-items: center; }
.event-item.reverse { flex-direction: row-reverse; }
.event-image { flex: 0 0 50%; max-width: 50%; }
.event-image img { width: 100%; height: 400px; object-fit: cover; }
.event-content { flex: 1; }

.event-date {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: block;
}

.event-content h3 { font-size: 22px; margin-bottom: 15px; }
.event-content h3 a:hover { color: var(--color-primary); }
.event-content p { font-size: 15px; line-height: 25px; margin-bottom: 10px; }

.event-location {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-body-text);
}

/* Parallax */
.parallax-section {
    position: relative;
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.parallax-section .container {
    position: relative;
    z-index: 1;
}

/* Skill Levels */
.skill-levels-section { padding: 125px 0; }
.image-with-text { padding: 0 15px; }
.image-with-text img { max-width: 191px; margin: 0 auto; }

/* History */
.image-grid-two { display: flex; gap: 15px; }
.image-grid-two img { flex: 1; height: 100%; object-fit: cover; }

/* Masonry */
.masonry-section { overflow: hidden; }
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
}

.masonry-item { overflow: hidden; }
.masonry-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-large-width { grid-column: span 2; }
.masonry-large-height { grid-row: span 2; }

/* Map */
.map-section {
    position: relative;
    padding: 125px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.map-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-graphic {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.map-content {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    max-width: 400px;
}

.map-pins {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.map-pin { position: absolute; cursor: pointer; }

.map-pin-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-heading);
    position: absolute;
    white-space: nowrap;
}

/* Team */
.team-member { position: relative; overflow: hidden; }
.team-image { position: relative; overflow: hidden; }
.team-image img { width: 100%; display: block; }

.team-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(13, 227, 217, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .team-overlay { opacity: 1; }

.team-info {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.team-member:hover .team-info { transform: translateY(0); }
.team-info h3 { color: var(--color-white); font-size: 22px; margin-bottom: 5px; }
.team-info h6 { color: var(--color-white); font-size: 11px; margin-bottom: 15px; }

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Testimonials */
.testimonials-section { background-color: var(--color-black); }
.testimonials-slider { position: relative; max-width: 700px; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }

.quote-icon { width: 120px; height: auto; margin-bottom: 20px; }

.testimonial-text {
    font-size: 16px;
    line-height: 28px;
    color: var(--color-white);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h5 { color: var(--color-primary); font-size: 12px; }

.testimonial-nav { display: flex; gap: 10px; margin-top: 30px; }
.testimonial-prev,
.testimonial-next {
    font-size: 20px;
    color: var(--color-white);
    cursor: pointer;
    transition: color 0.3s ease;
}
.testimonial-prev:hover,
.testimonial-next:hover { color: var(--color-primary); }

/* Process */
.parallax-header { position: relative; }

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-heading);
    transition: all 0.3s ease;
}

.process-step.active .process-circle,
.process-step:hover .process-circle {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.process-step img { max-width: 215px; margin: 0 auto 20px; }
.process-step h4 { font-size: 16px; margin-bottom: 10px; }
.process-step p { font-size: 14px; line-height: 23px; }

/* Weather */
.weather-widget { margin-top: 30px; }
.weather-today { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.weather-icon { font-size: 48px; color: var(--color-primary); }
.weather-info { display: flex; flex-direction: column; }
.weather-temp {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-heading);
}
.weather-desc { font-size: 14px; color: var(--color-body-text); }
.weather-location {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-body-text);
}

.weather-forecast { display: flex; gap: 30px; }

.forecast-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-body-text);
}

.forecast-item i { font-size: 24px; color: var(--color-primary); }
.forecast-item small { font-size: 11px; }

.weather-link {
    display: inline-block;
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-heading);
    border-bottom: 1px solid var(--color-heading);
    transition: all 0.3s ease;
}

.weather-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.weather-photo-grid { display: flex; gap: 15px; }
.photo-column { flex: 1; }

.location-banner {
    position: relative;
    margin-bottom: 15px;
}

.location-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.banner-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--color-white);
}

.banner-info .location-icon { font-size: 24px; margin-bottom: 5px; }
.banner-info span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    display: block;
}
.banner-info small { font-size: 12px; opacity: 0.8; }

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

.custom-font-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: -0.02em;
    color: var(--color-heading);
}

/* Instagram */
.instagram-section { overflow: hidden; }
.instagram-grid { display: flex; }
.instagram-item { flex: 0 0 16.666%; overflow: hidden; }
.instagram-item img {
    width: 100%; height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.instagram-item:hover img { transform: scale(1.05); }

/* ========================================
   Footer
   ======================================== */
.site-footer { background-color: var(--color-black); }
.footer-top { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-social { display: flex; gap: 15px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--color-footer-text);
    transition: color 0.3s ease;
}

.footer-item:hover { color: var(--color-primary); }
.footer-item i { color: var(--color-white); font-size: 16px; }

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--color-footer-text);
    transition: color 0.3s ease;
}

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

.newsletter-form { display: flex; flex-direction: column; gap: 15px; }

.newsletter-input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-white);
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder { color: var(--color-footer-text); }
.newsletter-input:focus { border-color: var(--color-primary); }

.footer-bottom { padding: 30px 0; }
.footer-logo { margin-bottom: 10px; }
.footer-copyright {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-footer-text);
}

.footer-bottom-contact {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}

.footer-bottom-contact a,
.footer-bottom-contact span {
    font-size: 16px;
    color: var(--color-white);
    transition: color 0.3s ease;
}

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

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .top-bar-right { display: none; }
    .header-left .main-menu,
    .header-right .main-menu,
    .header-left .header-widget-area,
    .header-right .header-widget-area { display: none; }
    .mobile-menu-toggle { display: flex; }
    .col-3, .col-4, .col-5, .col-6, .col-7, .col-8 {
        flex: 0 0 50%; max-width: 50%;
    }
    .side-menu { width: 300px; right: -300px; }
    .hero-slider { height: 600px; }
    .service-banner { flex: 0 0 50%; }
    .content-text { padding-left: 20px; }
    .event-item, .event-item.reverse { flex-direction: column; }
    .event-image { flex: 0 0 100%; max-width: 100%; }
    .masonry-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-wrap: wrap; }
    .process-step { flex: 0 0 50%; }
    .process-steps::before { display: none; }
    .weather-photo-grid { flex-direction: column; }
    .instagram-item { flex: 0 0 33.333%; }
    .map-content {
        position: relative; top: auto; right: auto;
        transform: none; max-width: 100%;
        text-align: center; margin-top: 40px;
    }
    .footer-bottom-contact {
        justify-content: flex-start; flex-wrap: wrap;
    }
}

@media (max-width: 680px) {
    h1 { font-size: 28px; }
    .top-bar-left { gap: 10px; }
    .top-bar-left .social-icon { display: none; }
    .col-3, .col-4, .col-5, .col-6, .col-7, .col-8 {
        flex: 0 0 100%; max-width: 100%;
    }
    .header-inner { height: 70px; }
    .hero-slider { height: 400px; }
    .slider-nav { display: none; }
    .service-banner { flex: 0 0 100%; }
    .masonry-grid { grid-template-columns: 1fr; }
    .masonry-large-width { grid-column: span 1; }
    .process-step { flex: 0 0 100%; }
    .weather-forecast { flex-direction: column; gap: 20px; }
    .instagram-item { flex: 0 0 50%; }
    .footer-bottom-contact { flex-direction: column; gap: 10px; }
}
