/*
Theme Name: VOYAGE - Island Life Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: ワクワクが止まらない小さな島 - 移住支援サイトテーマ
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: voyage
*/

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

html {
    overflow-x: hidden;
}

:root {
    --primary-color: #2c5f8d;
    --text-dark: #333;
    --text-light: #fff;
    --accent-gold: #c9a961;
}

body {
    font-family: Arial, "Hiragino Sans", "Yu Gothic Medium", Meiryo, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

a:hover {
    opacity: 0.7;
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    height: 90px;
}

.site-header.scrolled {
    background: #FFEC00;
    padding: 20px 40px;
}

/* WordPress Admin Bar adjustment */
.admin-bar .site-header {
    top: 32px;
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: var(--primary-color);
}

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

.site-tagline {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.05em;
}

.nav-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-open .nav-toggle span {
    background: #333;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 120px 30px 120px;
    background: #ffffff;
    z-index: 1;
}

.admin-bar .hero-section {
    min-height: calc(100vh - 122px);
}

@media screen and (max-width: 782px) {
    .admin-bar .hero-section {
        min-height: calc(100vh - 136px);
    }
}

.hero-background {
    position: absolute;
    top: 100px;
    left: 120px;
    right: 120px;
    bottom: 120px;
    width: calc(100% - 240px);
    height: calc(100vh - 220px);
    object-fit: cover;
    border-radius: 20px;
    z-index: 0;
}


.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 1;
    padding: 0 20px;
    position: relative;
}

.hero-logo {
    margin-bottom: 60px;
    animation: fadeInUp 2s ease-out;
}

.hero-logo-icon {
    width: 280px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-weight: 600;
    color: rgb(255, 255, 255);
    font-size: clamp(28px, 5vw, 120px);
    line-height: 1.2;
    letter-spacing: 0.3em;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: clamp(18px, 2.5vw, 60px);
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 2s ease-out 0.5s backwards;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.about-container {
    max-width: 100%;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 60px;
}

.about-title {
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 600;
    color: #2c5f8d;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

.about-description {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 2;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
}

.about-images-wrapper {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.about-images-slider {
    display: flex;
    gap: 30px;
    animation: slideLeft 60s linear infinite;
    width: fit-content;
}

.about-images-slider:hover {
    animation-play-state: paused;
}

.about-image-item {
    flex-shrink: 0;
    width: 400px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Services Section */
.services-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 100%;
    height: 100%;
    background-image: url('assets/images/service-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    border-radius: 60px;
    transition: transform 0.1s ease-out, border-radius 0.1s ease-out;
}

.services-background.zoomed {
    transform: translate(-50%, -50%) scale(1.2);
}

.services-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.services-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-title {
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease;
    opacity: 0;
    transform: translateY(30px);
}

.services-container.visible .service-item {
    opacity: 1;
    transform: translateY(0);
}

.services-container.visible .service-item:nth-child(1) {
    transition-delay: 0.3s;
}

.services-container.visible .service-item:nth-child(2) {
    transition-delay: 0.5s;
}

.services-container.visible .service-item:nth-child(3) {
    transition-delay: 0.7s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 20px;
    line-height: 1;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.service-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* History Section */
.history-section {
    padding: 120px 60px;
    background: #f8f8f8;
    position: relative;
}

.history-container {
    max-width: 1000px;
    margin: 0 auto;
}

.history-title {
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 600;
    color: #2c5f8d;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

.history-timeline {
    position: relative;
    padding-left: 0;
}

/* タイムラインの縦線 */
.history-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
}

.history-item {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateX(150px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.history-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.history-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 28px;
    font-weight: 700;
    color: #2c5f8d;
    text-align: right;
    padding-top: 5px;
    position: relative;
}

/* タイムラインのドット */
.history-year::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 15px;
    width: 12px;
    height: 12px;
    background: #2c5f8d;
    border-radius: 50%;
    border: 3px solid #f8f8f8;
}

.history-content {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.history-item-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.history-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* Sidebar Navigation (元の右側ナビゲーション) */
.sidebar-nav {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 90px;
    align-items: center;
    margin-top: 45px;
}

/* WordPress Admin Bar adjustment for sidebar */
.admin-bar .sidebar-nav {
    margin-top: 61px;
}

@media screen and (max-width: 782px) {
    .admin-bar .sidebar-nav {
        margin-top: 68px;
    }
}

.sidebar-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
}

.sidebar-nav-item:hover {
    transform: scale(1.1);
}

.sidebar-nav-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-nav-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color);
}

.sidebar-nav-text {
    font-size: 14px;
    font-weight: 500;
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
    color: var(--text-dark);
}

/* Responsive adjustments for smaller screens */
@media screen and (max-height: 900px) {
    .sidebar-nav {
        gap: 35px;
        margin-top: 45px;
    }
    
    .sidebar-nav-icon {
        width: 45px;
        height: 45px;
    }
    
    .sidebar-nav-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .sidebar-nav-text {
        font-size: 12px;
    }
}

@media screen and (max-height: 768px) {
    .sidebar-nav {
        gap: 25px;
        margin-top: 45px;
    }
    
    .sidebar-nav-icon {
        width: 38px;
        height: 38px;
    }
    
    .sidebar-nav-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .sidebar-nav-text {
        font-size: 11px;
    }
}

@media screen and (max-height: 700px) {
    .sidebar-nav {
        gap: 20px;
        margin-top: 40px;
    }
    
    .sidebar-nav-icon {
        width: 35px;
        height: 35px;
    }
    
    .sidebar-nav-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .sidebar-nav-text {
        font-size: 10px;
    }
}

/* Fullscreen Navigation Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

.nav-open .fullscreen-menu {
    opacity: 1;
    visibility: visible;
}

.nav-open {
    overflow: hidden;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.fullscreen-menu-content {
    display: grid;
    grid-template-columns: 1fr auto;
    height: 100vh;
    max-height: 100vh;
    padding: 60px 40px 40px 60px;
    gap: 40px;
    overflow: hidden;
}

.fullscreen-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.menu-section {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
}

.menu-section-title {
    font-size: 10px;
    color: #999;
    font-weight: 400;
    margin-bottom: 3px;
    letter-spacing: 0.05em;
}

.menu-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.menu-link:hover {
    transform: translateX(10px);
}

.menu-link-main {
    font-size: 18px;
    font-weight: 600;
    color: #2c5f8d;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.menu-link:hover .menu-link-main {
    color: #2c5f8d;
}

.menu-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
}

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

.menu-footer-link {
    font-size: 12px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}

.menu-footer-link:hover {
    color: #2c5f8d;
}

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

.social-link {
    width: 18px;
    height: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #2c5f8d;
    opacity: 1;
}

.social-link svg {
    width: 100%;
    height: 100%;
}

/* Vertical Text */
.vertical-text {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 16px;
    letter-spacing: 0.2em;
    color: var(--text-dark);
    z-index: 20;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* News Ticker Section */
.news-ticker-section {
    padding: 40px 60px 50px 60px;
    background: #ffffff;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #e0e0e0;
}

.news-ticker-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 40px;
    overflow: hidden;
}

.news-ticker {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

.news-ticker.active {
    opacity: 1;
    pointer-events: auto;
}

.news-ticker-date {
    font-weight: 400;
    color: #999;
    font-size: clamp(11px, 0.8vw, 13px);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.news-ticker-content {
    color: var(--text-dark);
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.news-ticker:hover .news-ticker-content {
    opacity: 0.6;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    padding: 60px 60px 30px 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    color: #fff;
}

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

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #2c5f8d;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 5px 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2c5f8d;
    opacity: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* News Page Styles */
.news-page {
    padding-top: 90px;
    background: #fff;
}

.admin-bar .news-page {
    padding-top: 122px;
}

@media screen and (max-width: 782px) {
    .admin-bar .news-page {
        padding-top: 136px;
    }
}

/* News List Section */
.news-list-section {
    padding: 80px 60px;
    background: #fff;
}

.news-container {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 40px;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.news-item:first-child {
    padding-top: 0;
}

.news-item:hover {
    transform: translateX(5px);
}

.news-date {
    flex-shrink: 0;
    width: 120px;
    font-size: 16px;
    font-weight: 600;
    color: #2c5f8d;
    padding-top: 5px;
}

.news-content {
    flex: 1;
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.news-excerpt {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.news-link {
    display: inline-block;
    font-size: 14px;
    color: #2c5f8d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding-right: 20px;
}

.news-link::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: right 0.3s ease;
}

.news-link:hover {
    color: #4a7ba7;
    opacity: 1;
}

.news-link:hover::after {
    right: -5px;
}

/* Empty News Message */
.news-empty {
    text-align: center;
    padding: 60px 20px;
}

.news-empty p {
    font-size: 16px;
    color: #999;
}

/* Responsive - News Page */
@media (max-width: 768px) {
    .news-page {
        padding-top: 70px;
    }
    
    .news-list-section {
        padding: 60px 20px;
    }
    
    .news-item {
        flex-direction: column;
        gap: 15px;
        padding: 25px 0;
    }
    
    .news-date {
        width: auto;
        font-size: 14px;
        padding-top: 0;
    }
    
    .news-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .news-excerpt {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .news-link {
        font-size: 13px;
    }
}

/* Single Post Page Styles */
.single-post {
    padding-top: 90px;
    background: #fff;
}

.admin-bar .single-post {
    padding-top: 122px;
}

@media screen and (max-width: 782px) {
    .admin-bar .single-post {
        padding-top: 136px;
    }
}

.post-meta {
    text-align: center;
    margin-top: 15px;
}

.post-date {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Post Content Section */
.post-content-section {
    padding: 80px 60px;
    background: #fff;
}

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

.post-article {
    background: #fff;
    line-height: 2;
    font-size: 16px;
    color: #333;
}

.post-article h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c5f8d;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2c5f8d;
}

.post-article h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px;
}

.post-article p {
    margin-bottom: 20px;
}

.post-article ul,
.post-article ol {
    margin: 20px 0 20px 30px;
}

.post-article li {
    margin-bottom: 10px;
}

.post-article img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
}

.post-article a {
    color: #2c5f8d;
    text-decoration: underline;
}

.post-article a:hover {
    color: #4a7ba7;
    opacity: 1;
}

.post-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.back-to-news {
    display: inline-block;
    padding: 12px 30px;
    background: #f8f8f8;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-to-news:hover {
    background: #2c5f8d;
    color: #fff;
    opacity: 1;
}

/* Responsive - Single Post */
@media (max-width: 768px) {
    .single-post {
        padding-top: 70px;
    }
    
    .post-content-section {
        padding: 60px 20px;
    }
    
    .post-article {
        font-size: 15px;
    }
    
    .post-article h2 {
        font-size: 20px;
        margin: 30px 0 15px;
    }
    
    .post-article h3 {
        font-size: 18px;
        margin: 25px 0 12px;
    }
    
    .post-navigation {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .back-to-news {
        font-size: 14px;
        padding: 10px 25px;
    }
}

/* Fixed Contact Button */
.fixed-contact-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #2c5f8d;
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(44, 95, 141, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-button:hover {
    background: #4a7ba7;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(44, 95, 141, 0.5);
    opacity: 1;
}

.contact-button-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-button-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.contact-button-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-button-label {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
}

.contact-button-phone {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Responsive for Fixed Contact Button */
@media (max-width: 768px) {
    .fixed-contact-button {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-button {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .contact-button-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-button-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-button-label {
        font-size: 10px;
    }
    
    .contact-button-phone {
        font-size: 16px;
    }
}

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

/* Responsive - Fullscreen Menu */
@media (max-width: 1024px) {
    .fullscreen-menu-content {
        grid-template-columns: 1fr;
        padding: 70px 30px 40px 30px;
        gap: 40px;
    }
    
    .fullscreen-nav {
        gap: 15px;
    }
    
    .menu-section {
        padding-bottom: 6px;
    }
    
    .menu-section-title {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .menu-link-main {
        font-size: 18px;
    }
    
    .menu-footer {
        gap: 20px;
    }
    
    .menu-links {
        gap: 10px;
    }
    
    .menu-footer-link {
        font-size: 12px;
    }
    
    .menu-social {
        gap: 12px;
    }
    
    .social-link {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .menu-close {
        top: 20px;
        right: 20px;
        font-size: 32px;
    }
    
    .fullscreen-menu-content {
        padding: 60px 25px 30px 25px;
        gap: 30px;
    }
    
    .fullscreen-nav {
        gap: 12px;
    }
    
    .menu-section {
        padding-bottom: 5px;
    }
    
    .menu-section-title {
        font-size: 9px;
        margin-bottom: 3px;
    }
    
    .menu-link-main {
        font-size: 16px;
    }
    
    .menu-footer {
        gap: 15px;
    }
    
    .menu-links {
        gap: 8px;
    }
    
    .menu-footer-link {
        font-size: 11px;
    }
    
    .menu-social {
        gap: 10px;
    }
    
    .social-link {
        width: 16px;
        height: 16px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }
    
    .hero-section {
        padding: 80px 30px 100px 30px;
    }
    
    .hero-background {
        top: 80px;
        left: 30px;
        right: 30px;
        bottom: 100px;
        width: calc(100% - 60px);
        height: calc(100vh - 180px);
        border-radius: 15px;
    }
    
    .sidebar-nav {
        display: none;
    }
    
    .vertical-text {
        left: 10px;
        font-size: 11px;
    }
    
    .news-ticker-section {
        padding: 40px 20px;
    }
    
    .news-ticker {
        padding: 0;
        gap: 10px;
    }
    
    .news-ticker-date {
        font-size: 12px;
    }
    
    .news-ticker-content {
        font-size: 14px;
    }
    
    .about-section {
        padding: 60px 20px;
    }
    
    .about-text {
        margin-bottom: 40px;
    }
    
    .about-title {
        margin-bottom: 20px;
    }
    
    .about-images-slider {
        gap: 15px;
    }
    
    .about-image-item {
        width: 280px;
        height: 200px;
    }
    
    .services-section {
        padding: 60px 20px;
    }
    
    .services-title {
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .service-number {
        font-size: 36px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .history-section {
        padding: 60px 20px;
    }
    
    .history-title {
        margin-bottom: 40px;
    }
    
    .history-timeline::before {
        left: 50px;
    }
    
    .history-item {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .history-year {
        width: 50px;
        font-size: 18px;
    }
    
    .history-year::after {
        right: -11px;
        top: 8px;
        width: 8px;
        height: 8px;
        border: 2px solid #f8f8f8;
    }
    
    .history-content {
        padding: 20px 15px;
    }
    
    .history-item-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .history-description {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .site-footer {
        padding: 40px 20px 20px 20px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-heading {
        font-size: 15px;
    }
    
    .footer-section p {
        font-size: 13px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}

/* Services Page Styles */
.services-page {
    padding-top: 90px;
    background: #fff;
}

.admin-bar .services-page {
    padding-top: 122px;
}

@media screen and (max-width: 782px) {
    .admin-bar .services-page {
        padding-top: 136px;
    }
}

/* Page Hero Services */
.page-hero-services {
    background: #fff;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slide-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.hero-slide-content {
    text-align: left;
}

.page-title-large {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-description {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 2;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.hero-slide-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FFEC00;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 236, 0, 0.3);
}

.hero-slide-button:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 236, 0, 0.4);
    opacity: 1;
}

.hero-slide-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator.active {
    background: #2c5f8d;
    border-color: #fff;
    transform: scale(1.3);
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 60px;
    background: #fff;
}

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

.services-section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #2c5f8d;
    letter-spacing: 0.1em;
}

.services-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.service-card {
    background: #fff;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.service-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #e0e0e0;
    border-radius: 12px;
    margin: 25px 25px 0 25px;
    width: calc(100% - 50px);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.service-card-content {
    padding: 25px 25px 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c5f8d;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    text-align: center;
}

.service-card-description {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
    flex: 1;
}

.service-card-link {
    font-size: 14px;
    color: #2c5f8d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.service-card-link:hover {
    color: #4a7ba7;
    opacity: 1;
}

/* CTA Section */
.services-cta-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 60px;
    text-align: center;
    border-top: 2px solid #e0e0e0;
    position: relative;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.services-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    position: relative;
    z-index: 2;
}

.services-cta-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.cta-description {
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 2;
    color: #666;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    flex-direction: row;
}

.cta-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-button-phone-number {
    font-size: 18px;
    font-weight: 700;
    margin-left: 5px;
}

.cta-button-phone {
    background: #2c5f8d;
    color: #fff;
}

.cta-button-phone:hover {
    background: #4a7ba7;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.3);
    opacity: 1;
}

.cta-button-email {
    background: #4a7ba7;
    color: #fff;
}

.cta-button-email:hover {
    background: #5a8bb7;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 123, 167, 0.3);
    opacity: 1;
}

.cta-button-line {
    background: #06C755;
    color: #fff;
}

.cta-button-line:hover {
    background: #00B900;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
    opacity: 1;
}

/* Shop Info Page Styles */
.shop-page {
    padding-top: 90px;
    background: #fff;
}

.admin-bar .shop-page {
    padding-top: 122px;
}

@media screen and (max-width: 782px) {
    .admin-bar .shop-page {
        padding-top: 136px;
    }
}

/* Simple Page Hero */
.page-hero-simple {
    background: #FFEC00;
    padding: 60px 60px;
    text-align: center;
}

.page-title-simple {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #333;
    letter-spacing: 0.1em;
}

/* Shop Info Section */
.shop-info-section {
    padding: 80px 60px;
    background: #fff;
}

.shop-info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.shop-image {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.shop-image img {
    width: 100%;
    height: auto;
    display: block;
}

.shop-description {
    margin-bottom: 40px;
    padding: 0 20px;
}

.shop-description p {
    font-size: 15px;
    line-height: 2;
    color: #333;
    text-align: left;
}

/* Access Section */
.access-section {
    margin-top: 80px;
}

.access-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #2c5f8d;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
}

.shop-map {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.shop-map iframe {
    display: block;
}

.shop-details {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.shop-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.shop-info-list {
    max-width: 600px;
    margin: 0 auto 30px;
}

.shop-info-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.shop-info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 15px;
    font-weight: 600;
    color: #666;
    min-width: 100px;
}

.info-value {
    font-size: 15px;
    color: #333;
    text-align: right;
    flex: 1;
}

.google-map-link {
    display: inline-block;
    padding: 12px 30px;
    background: #4285f4;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.google-map-link:hover {
    background: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    opacity: 1;
}

/* FAQ Page Styles */
.faq-page {
    padding-top: 90px;
    background: #fff;
}

.admin-bar .faq-page {
    padding-top: 122px;
}

@media screen and (max-width: 782px) {
    .admin-bar .faq-page {
        padding-top: 136px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 60px;
    background: #fff;
}

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

.faq-category {
    margin-bottom: 60px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: #2c5f8d;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-bottom: none;
    background: #fff;
}

.faq-item:first-child {
    border-radius: 8px 8px 0 0;
}

.faq-item:last-child {
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
}

.faq-item:only-child {
    border-radius: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-item.active .faq-question {
    background: #f0f8ff;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2c5f8d;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2c5f8d;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px 0 72px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 72px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Contact Page Styles */
.contact-page {
    padding-top: 90px;
    background: #fff;
}

.admin-bar .contact-page {
    padding-top: 122px;
}

@media screen and (max-width: 782px) {
    .admin-bar .contact-page {
        padding-top: 136px;
    }
}

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

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro p {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: #2c5f8d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    fill: none;
}

.contact-method-icon svg[fill="currentColor"] {
    stroke: none;
    fill: #fff;
}

.contact-method-content {
    flex: 1;
}

.contact-method-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.contact-method-value {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-method-value:hover {
    color: #2c5f8d;
    opacity: 1;
}

.contact-method-link {
    display: inline-block;
    padding: 10px 25px;
    background: #06C755;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-method-link:hover {
    background: #00B900;
    transform: translateY(-2px);
    opacity: 1;
}

/* Contact Form */
.contact-form-wrapper {
    background: #f8f8f8;
    padding: 50px 40px;
    border-radius: 12px;
}

.contact-form-title {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: #2c5f8d;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.contact-form-placeholder {
    text-align: center;
    padding: 40px 20px;
}

.contact-form-placeholder p {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
}

/* Contact Form 7 Styles */
.wpcf7 {
    max-width: 100%;
}

.wpcf7-form p {
    margin-bottom: 20px;
}

.wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    border-color: #2c5f8d;
    outline: none;
}

.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    padding: 15px 40px;
    background: #2c5f8d;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
    background: #4a7ba7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.3);
}

/* Responsive - Contact Page */
@media (max-width: 768px) {
    .contact-page {
        padding-top: 70px;
    }
    
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-intro {
        margin-bottom: 40px;
    }
    
    .contact-intro p {
        font-size: 14px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .contact-method-item {
        padding: 25px 20px;
    }
    
    .contact-method-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-method-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .contact-method-value {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 40px 25px;
    }
    
    .contact-form-title {
        margin-bottom: 30px;
    }
}

/* Responsive - FAQ Page */
@media (max-width: 768px) {
    .faq-page {
        padding-top: 70px;
    }
    
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-category {
        margin-bottom: 50px;
    }
    
    .faq-category-title {
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 15px 20px;
        gap: 12px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .faq-question-text {
        font-size: 14px;
    }
    
    .faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 20px;
    }
    
    .faq-answer {
        padding: 0 20px 0 60px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 60px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Responsive - Shop Page */
@media (max-width: 768px) {
    .shop-page {
        padding-top: 70px;
    }
    
    .page-hero-simple {
        padding: 40px 20px;
    }
    
    .shop-info-section {
        padding: 60px 20px;
    }
    
    .shop-image {
        margin-bottom: 40px;
    }
    
    .shop-description {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .shop-description p {
        font-size: 14px;
    }
    
    .access-section {
        margin-top: 60px;
    }
    
    .access-title {
        margin-bottom: 30px;
    }
    
    .shop-details {
        padding: 30px 20px;
    }
    
    .shop-name {
        font-size: 20px;
    }
    
    .shop-info-item {
        flex-direction: column;
        text-align: left;
        padding: 12px 0;
    }
    
    .info-label {
        margin-bottom: 5px;
    }
    
    .info-value {
        text-align: left;
    }
}

/* Responsive - Services Page */
@media (max-width: 1024px) {
    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding-top: 70px;
    }
    
    .page-hero-services {
        padding: 0;
    }
    
    .hero-slideshow {
        min-height: 600px;
    }
    
    .hero-slide {
        height: 600px;
    }
    
    .hero-slide-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .hero-slide-content {
        text-align: center;
    }
    
    .page-title-large {
        margin-bottom: 15px;
    }
    
    .page-description {
        margin-bottom: 20px;
    }
    
    .hero-slide-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .hero-slide-image {
        order: -1;
    }
    
    .slide-indicators {
        bottom: 25px;
        gap: 10px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    .services-grid-section {
        padding: 50px 20px;
    }
    
    .services-section-header {
        margin-bottom: 40px;
    }
    
    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .service-card-content {
        padding: 25px 20px;
    }
    
    .service-card-title {
        font-size: 18px;
    }
    
    .service-card-description {
        font-size: 13px;
    }
    
    .services-cta-section {
        padding: 80px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 30px;
        font-size: 15px;
    }
}

