/*
Theme Name: Akldama
Theme URI: https://akldama.ge
Author: Akldama
Author URI: https://akldama.ge
Description: Custom dark theme for Akldama funeral services
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: akldama
*/

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
    --bg-primary: #121212;
    --bg-secondary: #1a1a1a;
    --bg-header: linear-gradient(180deg, #1f1f1f 0%, #181818 100%);
    --bg-sidebar: #161616;
    --bg-content: #0f0f0f;
    --gold: #c9a962;
    --gold-light: #dfc07a;
    --gold-dark: #a68b4b;
    --gold-glow: rgba(201, 169, 98, 0.15);
    --text-white: #f0f0f0;
    --text-gray: #a0a0a0;
    --text-muted: #606060;
    --border: #2a2a2a;
    --border-light: #333333;
    --shadow: rgba(0, 0, 0, 0.6);
    --shadow-gold: rgba(201, 169, 98, 0.1);
    --font-primary: 'Noto Sans Georgian', 'BPG Glaho WEB Caps', sans-serif;
    --font-display: 'Noto Serif Georgian', 'BPG Ingiri', serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at 30% -20%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(201, 169, 98, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
    background-attachment: fixed;
    color: var(--text-white);
    line-height: 1.7;
    min-height: 100vh;
    font-size: 15px;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

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

/* ============================================
   Layout
   ============================================ */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Homepage - Full page background image */
.home .site-wrapper,
.front-page .site-wrapper {
    background-image: url('/wp-content/uploads/background-home.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
}

/* Mobile background - actual mobile devices */
@media screen and (max-width: 820px),
       screen and (hover: none) and (pointer: coarse) {
    .home .site-wrapper,
    .front-page .site-wrapper {
        background-image: url('/wp-content/uploads/background-home-mobile.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        min-height: 100vh;
        height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .home .main-content,
    .front-page .main-content {
        min-height: auto;
        padding: 20px 30px;
    }

    .home .site-content,
    .front-page .site-content {
        height: calc(100vh - 80px);
        overflow-x: hidden;
        overflow-y: auto;
    }

    /* ტექსტის ზომა მობილურზე */
    .home-content h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .home-content .subtitle {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
}

/* Dark overlay for text visibility */
.home .site-wrapper::before,
.front-page .site-wrapper::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.35) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.home .site-wrapper > *,
.front-page .site-wrapper > * {
    position: relative;
    z-index: 1;
}

.site-content {
    display: flex;
    flex: 1;
    flex-direction: row; /* Sidebar მარცხნივ */
}

.main-content {
    flex: 1;
    padding: 35px 40px;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    position: relative;
}

/* Homepage main content - transparent */
.home .main-content,
.front-page .main-content {
    background: transparent;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 40px 40px;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    padding: 18px 40px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.02),
        0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Homepage header - transparent */
.home .site-header,
.front-page .site-header {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.home .site-header::after,
.front-page .site-header::after {
    display: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.site-logo .logo-link:hover {
    transform: translateY(-1px);
}

.site-logo .logo-link:hover .logo-image {
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.25);
}

.site-logo .logo-image {
    height: 95px;
    width: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.site-logo .logo-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: lowercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.site-logo .logo-dot {
    color: var(--text-muted);
    font-size: 0.65em;
    letter-spacing: 1px;
}

.header-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-contact .separator {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    margin-left: 10px;
}

.phone-link:hover {
    color: var(--gold);
    background: rgba(201, 169, 98, 0.1);
    border-color: rgba(201, 169, 98, 0.2);
    transform: translateY(-1px);
}

.phone-link svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    filter: drop-shadow(0 0 4px rgba(201, 169, 98, 0.3));
}

.phone-link .phone-number {
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

/* ============================================
   Header Audio Player
   ============================================ */
.header-audio-player {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 20px;
    white-space: nowrap;
    transition: var(--transition);
}

.header-audio-player:hover {
    background: rgba(201, 169, 98, 0.08);
    border-color: rgba(201, 169, 98, 0.25);
}

.audio-play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(201, 169, 98, 0.3);
}

.audio-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(201, 169, 98, 0.45);
}

.audio-play-btn:active {
    transform: scale(0.95);
}

.audio-play-btn svg {
    width: 14px;
    height: 14px;
    fill: #121212;
}

.audio-play-btn .play-icon {
    margin-left: 3px;
}

.audio-play-btn.playing .play-icon {
    display: none;
}

.audio-play-btn.playing .pause-icon {
    display: block !important;
}

.audio-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

#sagalobeli-player {
    display: none;
}

/* ============================================
   Sidebar - Transparent Container
   ============================================ */
.site-sidebar {
    width: 340px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Sidebar Item - Glass/Water Effect */
.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: transparent;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.3px;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.sidebar-item:hover,
.sidebar-item.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
}

.sidebar-icon {
    display: none;
}

.sidebar-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold);
    transition: var(--transition);
}

.sidebar-item:hover .sidebar-icon svg,
.sidebar-item.active .sidebar-icon svg {
    stroke: var(--gold-light);
    filter: drop-shadow(0 0 6px rgba(201, 169, 98, 0.4));
}

.sidebar-text {
    flex: 1;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-arrow {
    font-size: 1.6rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    margin-left: auto;
}

.sidebar-item:hover .sidebar-arrow,
.sidebar-item.active .sidebar-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 26px;
    background: linear-gradient(135deg, rgba(180, 165, 140, 0.85) 0%, rgba(160, 145, 120, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #2a2520;
    transition: var(--transition);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-menu a::before {
    display: none;
}

.sidebar-menu a:hover,
.sidebar-menu a.active,
.sidebar-menu .current-menu-item a {
    background: linear-gradient(135deg, rgba(201, 180, 140, 0.95) 0%, rgba(180, 160, 120, 0.95) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    color: #1a1510;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.sidebar-menu a:hover::before,
.sidebar-menu a.active::before,
.sidebar-menu .current-menu-item a::before {
    transform: scaleY(1);
}

/* Menu Icon */
.menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.menu-icon svg {
    width: 42px;
    height: 42px;
    fill: #8b7355;
}

/* Menu Text */
.menu-text {
    flex: 1;
    line-height: 1.3;
}

/* Menu Arrow */
.menu-arrow {
    font-size: 1.6rem;
    color: #6b5a45;
    transition: all 0.3s ease;
    margin-left: auto;
    font-weight: bold;
}

.sidebar-menu a:hover .menu-arrow,
.sidebar-menu .current-menu-item a .menu-arrow {
    color: #4a3f30;
    transform: translateX(5px);
}

/* Sidebar Contact - Glass Card */
.sidebar-contact {
    margin-top: auto;
    padding: 20px;
    background: rgba(60, 60, 60, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
}

.sidebar-contact .availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
}

.sidebar-contact .availability svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
    filter: drop-shadow(0 0 4px rgba(201, 169, 98, 0.4));
}

.sidebar-phone {
    display: block;
    color: var(--text-white);
    font-size: 1rem;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.2);
    font-weight: 500;
    letter-spacing: 1px;
}

.sidebar-phone:hover {
    color: var(--gold);
    background: rgba(201, 169, 98, 0.15);
    transform: scale(1.02);
}

/* ============================================
   Carousel
   ============================================ */
.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 0 35px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 169, 98, 0.15);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    aspect-ratio: 16/9;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 30%,
        transparent 60%,
        rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(201, 169, 98, 0.2);
    color: var(--gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(8px);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.carousel-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn--prev {
    left: 20px;
}

.carousel-btn--next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(201, 169, 98, 0.5);
    transform: scale(1.2);
}

/* ============================================
   Homepage Content
   ============================================ */
.home-content {
    text-align: center;
    padding: 30px 40px;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.home-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 3px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.95), 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.home-content h1::first-letter {
    color: var(--gold-light);
}

.home-content .subtitle {
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
}

/* Mobile homepage text - MUST be after main styles */
@media screen and (max-width: 820px),
       screen and (hover: none) and (pointer: coarse) {
    .home-content h1 {
        font-size: 2.2rem !important;
        letter-spacing: 1px !important;
    }

    .home-content .subtitle {
        font-size: 1rem !important;
        letter-spacing: 2px !important;
    }

    /* Sidebar items - compact on mobile */
    .sidebar-item {
        padding: 14px 16px !important;
        font-size: 1rem !important;
        gap: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: transparent !important;
        border: none !important;
    }

    .sidebar-icon {
        display: none !important;
    }

    .sidebar-arrow {
        font-size: 1.2rem !important;
    }

    .site-sidebar {
        width: 320px !important;
        padding: 25px 12px !important;
    }
}

/* ============================================
   Service Page
   ============================================ */
.service-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
    position: relative;
}

.service-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--gold);
}

.service-header h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.service-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Service Gallery with Numbered Badges */
.service-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    counter-reset: gallery-counter;
}

.service-gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 4/3;
    counter-increment: gallery-counter;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.service-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-gallery__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 169, 98, 0.2);
}

.service-gallery__item:hover::after {
    opacity: 1;
}

.service-gallery__item::before {
    content: "#" counter(gallery-counter);
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 5;
    border: 1px solid rgba(201, 169, 98, 0.3);
    transition: var(--transition);
}

.service-gallery__item:hover::before {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.service-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-gallery__item:hover img {
    transform: scale(1.1);
}

/* Service CTA */
.service-cta {
    margin-top: 50px;
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(201, 169, 98, 0.03) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 169, 98, 0.15);
    position: relative;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.service-cta p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    padding: 16px 45px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.25);
    letter-spacing: 0.5px;
}

.btn-call:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #000;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
}

.btn-call svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ============================================
   Page Content
   ============================================ */
.page-content h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 400;
}

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

/* ============================================
   WordPress Blocks Compatibility
   ============================================ */
.wp-block-gallery {
    counter-reset: gallery-counter;
}

.wp-block-gallery .wp-block-image {
    position: relative;
    counter-increment: gallery-counter;
    border-radius: 8px;
    overflow: hidden;
}

.wp-block-gallery .wp-block-image::before {
    content: "#" counter(gallery-counter);
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 5;
}

/* ============================================
   Service Description
   ============================================ */
.service-description {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.service-description p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   Lightbox - სურათის გახსნა დიდზე
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 85vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-number {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    padding: 8px 22px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.lightbox-footer {
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.lightbox-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(212, 197, 169, 0.35);
    transition: all 0.3s ease;
}

.lightbox-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 197, 169, 0.5);
    color: var(--bg-primary);
}

.lightbox-call svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Mobile lightbox */
@media (max-width: 768px) {
    .lightbox-image {
        max-width: 95vw;
        max-height: 60vh;
        border-radius: var(--radius-sm);
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.7);
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-close {
        width: 44px;
        height: 44px;
        top: env(safe-area-inset-top, 10px);
        right: 10px;
        font-size: 22px;
    }

    .lightbox-call {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: calc(100% - 40px);
        max-width: 300px;
        justify-content: center;
    }

    .lightbox-number {
        top: -45px;
        font-size: 0.95rem;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .lightbox-image {
        max-width: 98vw;
        max-height: 55vh;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-call {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Gallery item cursor */
.service-gallery__item {
    cursor: pointer;
}

/* ============================================
   Sagaloblebi Audio Player
   ============================================ */
.sagaloblebi-section {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(12, 12, 12, 0.98) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 28px 30px;
    border-radius: var(--radius-lg);
    margin: 30px 0;
    border: 1px solid rgba(201, 169, 98, 0.1);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.sagaloblebi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.sagaloblebi-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.sagaloblebi-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    filter: drop-shadow(0 0 8px rgba(201, 169, 98, 0.3));
}

.sagaloblebi-header h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.audio-player-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.track-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.track-selector-wrapper label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.track-selector {
    flex: 1;
    min-width: 180px;
    max-width: 280px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-white);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a962' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.track-selector:hover,
.track-selector:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
    background-color: rgba(0, 0, 0, 0.4);
}

.track-selector option {
    background: #1a1a1a;
    color: var(--text-white);
    padding: 10px;
}

#sagalobeli-player {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 98, 0.15);
}

/* Custom Audio Player Styling */
#sagalobeli-player::-webkit-media-controls-panel {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%);
    border-radius: 24px;
}

#sagalobeli-player::-webkit-media-controls-play-button,
#sagalobeli-player::-webkit-media-controls-mute-button {
    filter: invert(75%) sepia(30%) saturate(400%) hue-rotate(10deg);
}

#sagalobeli-player::-webkit-media-controls-current-time-display,
#sagalobeli-player::-webkit-media-controls-time-remaining-display {
    color: var(--gold);
}

/* ============================================
   Responsive Design - DISABLED for mobile=desktop layout
   ============================================ */

/* Tablet - 992px - Layout changes DISABLED */
@media (max-width: 992px) {
    /* Keep desktop layout - don't change flex-direction or sidebar width */

    .main-content {
        padding: 30px 25px;
    }

    .service-header h1 {
        font-size: 1.8rem;
    }

    /* Menu styles preserved - no overrides */

    .main-content {
        padding: 25px 20px;
    }

    .service-header h1 {
        font-size: 1.8rem;
    }
}

/* Mobile - 768px - Keep desktop layout */
@media (max-width: 768px) {
    /* Keep all desktop styles - no size reductions */

    /* Carousel mobile */
    .carousel-wrapper {
        border-radius: var(--radius-md);
        margin-bottom: 25px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .carousel-btn--prev {
        left: 10px;
    }

    .carousel-btn--next {
        right: 10px;
    }

    .carousel-dots {
        padding: 14px;
        gap: 8px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    /* Service gallery mobile */
    .service-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-gallery__item {
        border-radius: var(--radius-sm);
    }

    .service-gallery__item::before {
        font-size: 0.75rem;
        padding: 4px 10px;
        top: 8px;
        left: 8px;
    }

    .service-header {
        margin-bottom: 25px;
        padding-bottom: 18px;
    }

    .service-header h1 {
        font-size: 1.6rem;
    }

    .service-cta {
        margin-top: 35px;
        padding: 25px 20px;
    }

    .btn-call {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }

    /* Audio player mobile */
    .sagaloblebi-section {
        padding: 22px 18px;
        margin: 20px 0;
        border-radius: var(--radius-md);
    }

    .sagaloblebi-header {
        margin-bottom: 18px;
    }

    .sagaloblebi-header h2 {
        font-size: 1.15rem;
    }

    .sagaloblebi-icon {
        width: 24px;
        height: 24px;
    }

    .track-selector-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .track-selector-wrapper label {
        text-align: center;
    }

    .track-selector {
        max-width: none;
        min-width: auto;
        width: 100%;
    }

    #sagalobeli-player {
        height: 44px;
        border-radius: 22px;
    }

    .main-content {
        padding: 22px 18px;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .site-header {
        padding: 12px 15px;
    }

    .site-logo .logo-image {
        height: 38px;
    }

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

    .site-logo .logo-link {
        gap: 10px;
    }

    .phone-link {
        font-size: 0.95rem;
        padding: 11px 16px;
    }

    /* 2 column grid on very small screens */
    .sidebar-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .sidebar-menu a {
        padding: 10px 6px;
        font-size: 0.75rem;
    }

    .menu-icon {
        width: 24px;
        height: 24px;
    }

    .menu-icon svg {
        width: 20px;
        height: 20px;
    }

    .menu-text {
        flex: none;
    }

    .home-content h1 {
        font-size: 1.6rem;
    }

    .home-content .subtitle {
        font-size: 0.85rem;
    }

    /* Two column gallery on small mobile */
    .service-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-gallery__item {
        aspect-ratio: 4/3;
    }

    .service-gallery__item::before {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .service-header h1 {
        font-size: 1.4rem;
    }

    .btn-call {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .main-content {
        padding: 18px 15px;
    }

    .carousel-slide {
        aspect-ratio: 4/3;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .sidebar-menu a:hover {
        transform: none;
    }

    .sidebar-menu a:active {
        transform: scale(0.98);
        background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.08) 100%);
    }

    .service-gallery__item:hover {
        transform: none;
    }

    .service-gallery__item:active {
        transform: scale(0.98);
    }

    .btn-call:hover {
        transform: none;
    }

    .btn-call:active {
        transform: scale(0.98);
    }

    .phone-link:hover {
        transform: none;
    }

    .phone-link:active {
        background: rgba(201, 169, 98, 0.15);
    }

    .carousel-btn:hover {
        transform: translateY(-50%);
    }

    .carousel-btn:active {
        transform: translateY(-50%) scale(0.95);
        background: var(--gold);
        color: #000;
    }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
    .site-header {
        padding-left: max(18px, env(safe-area-inset-left));
        padding-right: max(18px, env(safe-area-inset-right));
    }

    .main-content {
        padding-left: max(18px, env(safe-area-inset-left));
        padding-right: max(18px, env(safe-area-inset-right));
    }

    .site-sidebar {
        padding-left: max(18px, env(safe-area-inset-left));
        padding-right: max(18px, env(safe-area-inset-right));
    }
}

/* ============================================
   Header New Elements
   ============================================ */

/* Header Top Row */
.header-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 40px;
    background: transparent;
    border-bottom: none;
}

.home .header-top,
.front-page .header-top {
    background: transparent;
}

/* 24/7 Availability Badge */
.header-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-left: 12px;
}

.header-availability svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav .nav-link {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
    background: transparent;
}

.header-nav .nav-link:hover {
    color: var(--gold);
    background: transparent;
}

.header-nav .nav-link.active {
    color: var(--gold);
    background: transparent;
}

/* Domain under logo */
.site-logo {
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.site-domain {
    font-size: 1.3rem;
    color: var(--text-gray);
    letter-spacing: 1px;
    font-weight: 700;
    opacity: 0.9;
}

/* Brand Name Styles (აკლდამა ზემოთ, დამკრძალავი ბიურო ქვემოთ) */
.home-content .brand-name {
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.95), 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    text-transform: uppercase;
}

.home-content .brand-subtitle {
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7);
    opacity: 0.85;
}

/* Mobile adjustments for new elements */
@media screen and (max-width: 820px),
       screen and (hover: none) and (pointer: coarse) {
    .header-top {
        padding: 6px 15px;
    }

    .header-availability {
        font-size: 0.85rem;
    }

    .header-nav .nav-link {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .site-domain {
        font-size: 1.3rem;
        font-weight: 600;
    }

    .home-content .brand-name {
        font-size: 2.8rem !important;
        letter-spacing: 3px !important;
    }

    .home-content .brand-subtitle {
        font-size: 2rem !important;
        letter-spacing: 0 !important;
        font-weight: 600 !important;
    }
}

/* ============================================
   About Page Styles
   ============================================ */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.about-content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.about-content .entry-content {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
}

.about-content .entry-content p {
    margin-bottom: 20px;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
}

.contact-content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    font-size: 1rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-white);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
}

@media screen and (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding: 20px;
    }

    .about-content {
        padding: 20px;
    }
}

