/*
Theme Name: Ezgi ATLI - Profesyonel Koç
Theme URI: https://www.ezgiatli.com/
Author: HM
Author URI: https://www.huseyinmakul.com/
Description: Ezgi ATLI Kişisel Web Sitesi. Profesyonel Koç, Transaksiyonel Analiz ve Takım Koçluğu WordPress teması.
Version: 1.0
License: Tum haklari saklidir.
Text Domain: Ezgi ATLI WordPress Temasi
Tags: WordPress, Coach Theme
*/

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

        :root {
            --color-bg: #121E35;
            --color-bg-alt: #0F1A2E;
            --color-section-alt: #1A2845;
            --color-section-dark: #0F1A2E;
            --color-gold: #b8956a;
            --color-gold-light: #C4956A;
            --color-text: #E8E2D7;
            --color-text-muted: #8A847A;
            --color-text-dark: #666;
            --color-border: rgba(255, 255, 255, 0.04);
            --font-heading: 'Playfair Display', Georgia, serif;
            --font-body: 'Manrope', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Skip Navigation Link - Accessibility */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100000;
            padding: 0.75rem 1.5rem;
            background: var(--color-gold);
            color: var(--color-bg);
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 0 0 8px 8px;
            transition: top 0.2s ease;
        }

        .skip-link:focus {
            top: 0;
        }

        section[id] {
            scroll-margin-top: 120px;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 400;
        }

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

        /* HEADER */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 80;
            padding: 1.25rem 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
        }

        .site-header.scrolled {
            background: rgba(18, 30, 53, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(184, 149, 106, 0.3);
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 100;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(18, 30, 53, 0.9);
            border: 2px solid var(--color-gold);
            border-radius: 50%;
            color: var(--color-gold);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: var(--color-gold);
            color: var(--color-bg);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(184, 149, 106, 0.3);
        }

        .scroll-to-top svg {
            width: 24px;
            height: 24px;
        }

        .nav-logo-btn,
        .nav-logo-link {
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
            margin-top: 0.25rem;
            margin-left: 0.5rem;
            text-decoration: none;
            display: inline-block;
        }

        @media (min-width: 768px) {
            .nav-logo-btn,
            .nav-logo-link {
                margin-left: 1rem;
            }
        }

        .nav-logo {
            height: 75px;
            object-fit: contain;
        }

        .desktop-nav {
            display: none;
            align-items: center;
            gap: 0;
        }

        @media (min-width: 1024px) {
            .desktop-nav {
                display: flex;
            }
        }

        /* FANCY MENU EFFECT */
        .nav-inline-link {
            background-color: transparent;
            border: 2px solid transparent;
            box-sizing: border-box;
            color: rgba(232, 226, 215, 0.6);
            cursor: pointer;
            display: inline-block;
            font-weight: 800;
            letter-spacing: 0.05em;
            outline: none;
            overflow: visible;
            padding: 1.25em 2em;
            position: relative;
            text-align: center;
            text-decoration: none;
            text-transform: none;
            transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
            user-select: none;
            font-size: 13px;
            min-width: 160px;
        }

        .nav-inline-link::before {
            content: " ";
            width: 1.5625rem;
            height: 2px;
            background: var(--color-gold);
            top: 50%;
            left: 1.5em;
            position: absolute;
            transform: translateY(-50%);
            transition: background 0.3s linear, width 0.3s linear;
        }

        .nav-inline-link .text {
            font-size: 1.125em;
            line-height: 1.33333em;
            padding-left: 2em;
            display: block;
            text-align: left;
            transition: color 0.3s ease-in-out, padding-left 0.3s ease-in-out;
            text-transform: uppercase;
            color: rgba(232, 226, 215, 0.6);
            font-weight: 800;
            white-space: nowrap;
        }

        .nav-inline-link:hover {
            color: var(--color-bg);
            background: var(--color-gold);
            border-color: var(--color-gold);
        }

        .nav-inline-link:hover::before {
            width: 0.9375rem;
            background: var(--color-bg);
        }

        .nav-inline-link:hover .text {
            color: var(--color-bg);
            padding-left: 1.5em;
        }

        .nav-inline-link.active {
            background: var(--color-gold);
            color: var(--color-bg);
            border-color: var(--color-gold);
        }

        .nav-inline-link.active .text {
            color: var(--color-bg);
        }

        .nav-inline-link.active::before {
            background: var(--color-bg);
        }

        .nav-right-group {
            display: flex;
            align-items: center;
            gap: 0;
            margin-left: 1.5rem;
            padding-left: 0;
        }

        .social-link {
            padding: 0.75rem;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            color: rgba(232, 226, 215, 0.25);
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-link:hover {
            color: var(--color-gold);
        }

        .lang-switcher {
            display: flex;
            align-items: center;
            margin-left: 0;
            gap: 0.5rem;
        }

        /* Divider between social and lang */
        .header-divider {
            width: 1px;
            height: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            margin: 0 0.75rem;
        }

        /* LANG BUTTONS - SAME AS MENU */
        .lang-btn {
            background-color: transparent;
            border: 2px solid transparent;
            box-sizing: border-box;
            color: rgba(232, 226, 215, 0.6);
            cursor: pointer;
            display: inline-block;
            font-weight: 800;
            letter-spacing: 0.05em;
            outline: none;
            overflow: visible;
            padding: 0.85em 1.3em;
            position: relative;
            text-align: center;
            text-decoration: none;
            text-transform: none;
            transition: all 0.3s ease-in-out;
            user-select: none;
            font-size: 10px;
        }

        .lang-btn::before {
            content: " ";
            width: 1.2rem;
            height: 2px;
            background: var(--color-gold);
            top: 50%;
            left: 0.8em;
            position: absolute;
            transform: translateY(-50%);
            transition: background 0.3s linear, width 0.3s linear;
        }

        .lang-btn .lang-text {
            font-size: 1.125em;
            line-height: 1.33333em;
            padding-left: 2.2em;
            display: block;
            text-align: left;
            transition: all 0.3s ease-in-out;
            text-transform: uppercase;
            color: rgba(232, 226, 215, 0.6);
            font-weight: 800;
        }

        .lang-btn:hover {
            color: var(--color-bg);
            background: var(--color-gold);
            border-color: var(--color-gold);
        }

        .lang-btn:hover::before {
            width: 0.75rem;
            background: var(--color-bg);
        }

        .lang-btn:hover .lang-text {
            color: var(--color-bg);
        }

        .lang-btn.active {
            background: var(--color-gold);
            color: var(--color-bg);
            border-color: var(--color-gold);
        }

        .lang-btn.active .lang-text {
            color: var(--color-bg);
        }

        .lang-btn.active::before {
            background: var(--color-bg);
        }

        .lang-btn.inactive {
            opacity: 0.7;
        }

        /* Remove old fancy decorations */
        .lang-btn .top-key,
        .lang-btn .bottom-key-1,
        .lang-btn .bottom-key-2 {
            display: none;
        }

        .lang-separator {
            color: #333;
            font-size: 0.6rem;
            margin: 0;
        }

        .mobile-nav {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        @media (min-width: 1024px) {
            .mobile-nav {
                display: none;
            }
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        .hamburger-line {
            width: 20px;
            height: 1.5px;
            background: var(--color-text);
            transition: all 0.3s;
        }

        /* HERO SECTION */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--color-bg);
        }

        /* Static shared background - never transitions */
        .hero-bg-static {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-slides-container {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease-in-out, visibility 0s linear 0.8s;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 0;
        }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
            transition: opacity 0.8s ease-in-out, visibility 0s linear 0s;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-image {
            display: none;
        }

        /* IVY ANIMATION - SWAYING (GOLD) */
        .ivy-container {
            position: absolute;
            right: 0;
            top: 0;
            width: 50%;
            height: 100%;
            pointer-events: none;
            opacity: 0;
            animation: ivyFadeIn 1.5s ease-out 0.5s forwards;
        }

        @keyframes ivyFadeIn {
            to { opacity: 1; }
        }

        .ivy-branch {
            position: absolute;
            right: 0;
        }

        .ivy-branch.branch1 {
            top: 0;
            right: 10%;
            animation: sway1 4s ease-in-out infinite;
        }

        .ivy-branch.branch2 {
            top: 20%;
            right: 5%;
            animation: sway2 5s ease-in-out infinite 0.5s;
        }

        .ivy-branch.branch3 {
            top: 40%;
            right: 15%;
            animation: sway3 4.5s ease-in-out infinite 1s;
        }

        @keyframes sway1 {
            0%, 100% { transform: translateX(0) rotate(0deg); }
            50% { transform: translateX(-15px) rotate(-3deg); }
        }

        @keyframes sway2 {
            0%, 100% { transform: translateX(0) rotate(0deg); }
            50% { transform: translateX(-20px) rotate(2deg); }
        }

        @keyframes sway3 {
            0%, 100% { transform: translateX(0) rotate(0deg); }
            50% { transform: translateX(-10px) rotate(-2deg); }
        }

        .ivy-leaf {
            fill: var(--color-gold);
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .ivy-stem {
            stroke: var(--color-gold);
            stroke-width: 2;
            fill: none;
            opacity: 0.4;
        }

        .hero-gradient-1 {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, 
                var(--color-bg) 0%, 
                var(--color-bg) 25%,
                rgba(18, 30, 53, 0.3) 45%,
                transparent 60%);
        }

        .hero-gradient-2 {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, 
                var(--color-bg) 0%, 
                transparent 25%);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: transparent;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            margin-top: -5vh;
            padding: 0 1.5rem;
        }

        @media (min-width: 768px) {
            .hero-content {
                padding: 0 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .hero-content {
                padding: 0 3rem;
            }
        }

        .hero-content > div {
            max-width: 36rem;
        }

        .hero-subtitle {
            color: var(--color-gold);
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
        }

        @media (min-width: 768px) {
            .hero-subtitle {
                font-size: 0.75rem;
            }
        }

        .hero-title {
            font-family: 'Staatliches', 'Arial Black', 'Impact', sans-serif;
            font-size: clamp(3.5rem, 8vw, 6.5rem);
            font-weight: 400;
            line-height: 1.05;
            margin-bottom: 1.25rem;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .fonts-loaded .hero-title {
            opacity: 1;
        }

        .hero-title .line1 {
            display: block;
            color: #f8f8f8;
        }

        .hero-title .line2 {
            display: block;
            color: var(--color-gold);
        }

        .hero-description {
            color: #999;
            font-size: 0.875rem;
            max-width: 28rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            font-weight: 300;
        }

        @media (min-width: 768px) {
            .hero-description {
                font-size: 1rem;
            }
        }

        /* HERO QUOTE SLIDES */
        .hero-title-question {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            line-height: 1.2;
            color: var(--color-text);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        @media (min-width: 768px) {
            .hero-title-question {
                font-size: 3.5rem;
            }
        }

        .hero-quote {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--color-text-dark);
            font-style: italic;
            margin: 0 0 1.5rem 0;
            padding: 0;
            border: none;
            max-width: 35rem;
        }

        @media (min-width: 768px) {
            .hero-quote {
                font-size: 1.25rem;
            }
        }

        .hero-author {
            color: var(--color-gold);
            font-size: 1rem;
            font-weight: 500;
        }

        /* SLIDER DOTS */
        .hero-slider-controls {
            position: absolute;
            bottom: 6rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 2rem;
            z-index: 10;
        }

        .hero-nav-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid rgba(184, 149, 106, 0.3);
            border-radius: 50%;
            color: var(--color-gold);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-nav-btn:hover {
            background: var(--color-gold);
            color: var(--color-bg);
            border-color: var(--color-gold);
        }

        .hero-slider-dots {
            display: flex;
            gap: 1rem;
        }

        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: transparent;
            border: 2px solid rgba(184, 149, 106, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .hero-dot:hover {
            border-color: var(--color-gold);
            transform: scale(1.2);
        }

        .hero-dot.active {
            background: var(--color-gold);
            border-color: var(--color-gold);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--color-bg);
            background: var(--color-gold);
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.4s ease;
        }

        .btn-primary:hover {
            background: var(--color-gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(184, 149, 106, 0.2);
        }

        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            background: none;
            border: none;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .hero-scroll:hover {
            opacity: 1;
        }

        .hero-scroll svg {
            width: 20px;
            height: 20px;
            color: #666;
        }

        .hero-scroll:hover svg {
            color: var(--color-gold);
        }

        .hero-line {
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 6rem;
            background: linear-gradient(to bottom, 
                transparent, 
                rgba(184, 149, 106, 0.2), 
                transparent);
            display: none;
        }

        @media (min-width: 768px) {
            .hero-line {
                left: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .hero-line {
                display: block;
            }
        }

        /* INSIGHTS SECTION */
        .insights-section {
            padding: 4rem 0;
            background: var(--color-bg);
        }

        .insights-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .insights-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .insights-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2.5rem;
            }
        }

        .insight-card {
            background: linear-gradient(135deg, var(--color-section-alt) 0%, var(--color-section-dark) 100%);
            border: 1px solid rgba(184, 149, 106, 0.2);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .insight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-gold), #d4b98a, var(--color-gold));
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .insight-card:hover {
            transform: translateY(-8px);
            border-color: rgba(184, 149, 106, 0.4);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .insight-card:hover::before {
            transform: scaleX(1);
        }

        .card-content {
            position: relative;
            z-index: 1;
        }

        /* Intro Card */
        .intro-card .card-name {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--color-text);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .intro-card .card-subtitle {
            color: var(--color-gold);
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        .intro-card .card-description {
            color: var(--color-text-dark);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-gold);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
        }

        .card-link:hover {
            gap: 0.75rem;
            color: #d4b98a;
        }

        .card-link svg {
            transition: transform 0.3s ease;
        }

        .card-link:hover svg {
            transform: translateX(4px);
        }

        /* Quote Cards */
        .quote-card .card-question {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            color: var(--color-text);
            margin-bottom: 1.5rem;
            line-height: 1.4;
            font-weight: 500;
        }

        .card-quote-mark {
            font-size: 4rem;
            color: var(--color-gold);
            opacity: 0.3;
            line-height: 1;
            font-family: Georgia, serif;
            margin-bottom: -1rem;
        }

        .card-quote {
            color: var(--color-text-dark);
            font-size: 1rem;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 1.5rem;
            border: none;
            padding: 0;
        }

        .card-author {
            color: var(--color-gold);
            font-size: 0.9rem;
            font-weight: 500;
            text-align: right;
        }

        /* SERVICES SECTION */
        .services-section {
            padding: 5rem 0;
            background: var(--color-bg);
            position: relative;
        }

        @media (min-width: 768px) {
            .services-section {
                padding: 7rem 0;
            }
        }

        .section-divider-top {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 5rem;
            height: 1px;
            background: linear-gradient(to right, 
                transparent, 
                rgba(184, 149, 106, 0.3), 
                transparent);
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        @media (min-width: 768px) {
            .container {
                padding: 0 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding: 0 3rem;
            }
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        @media (min-width: 768px) {
            .section-header {
                margin-bottom: 4.5rem;
            }
        }

        .section-subtitle {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--color-gold);
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-size: 1.875rem;
            font-weight: 400;
        }

        @media (min-width: 640px) {
            .section-title {
                font-size: 2.25rem;
            }
        }

        @media (min-width: 1024px) {
            .section-title {
                font-size: 3rem;
            }
        }

        .services-quote {
            font-size: 1.5rem;
            font-style: italic;
            color: var(--color-gold);
            font-weight: 700;
            margin: 0 0 1.5rem 0;
            text-align: center;
            letter-spacing: 0.02em;
            line-height: 1.6;
            font-family: var(--font-heading);
        }

        @media (min-width: 640px) {
            .services-quote {
                font-size: 1.75rem;
            }
        }

        @media (min-width: 1024px) {
            .services-quote {
                font-size: 2rem;
            }
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
        }

        .service-card {
            padding: 2rem 1.5rem;
            background: rgba(20, 18, 16, 0.4);
            border: 3px solid rgba(184, 149, 106, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            background: rgba(20, 18, 16, 0.6);
            border-color: var(--color-gold);
            transform: translateY(-2px);
        }

        .service-icon {
            width: 2.75rem;
            height: 2.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }

        .service-icon svg {
            width: 22px;
            height: 22px;
            color: var(--color-gold);
            stroke-width: 1.5;
        }

        .service-card h3 {
            font-size: 1.125rem;
            margin-bottom: 0.75rem;
            color: white;
            font-weight: 400;
        }

        @media (min-width: 768px) {
            .service-card h3 {
                font-size: 1.25rem;
            }
        }

        .service-card p {
            color: #999;
            font-size: 0.875rem;
            line-height: 1.6;
            font-weight: 300;
        }

        /* ABOUT SECTION - 2 PHOTOS */
        .about-section {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
            background: var(--color-bg);
        }

        @media (min-width: 768px) {
            .about-section {
                padding: 9rem 0;
            }
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        @media (min-width: 768px) {
            .about-container {
                padding: 0 3rem;
            }
        }

        @media (min-width: 1024px) {
            .about-container {
                padding: 0 4rem;
            }
        }

        .about-grid {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            align-items: flex-start;
        }

        @media (min-width: 1024px) {
            .about-grid {
                flex-direction: row;
                gap: 5rem;
            }
        }

        .about-photos {
            width: 100%;
            position: relative;
        }

        @media (min-width: 1024px) {
            .about-photos {
                width: 45%;
            }
        }

        .photo-svg-frame {
            position: relative;
            width: 100%;
        }

        .photo-svg-frame.main {
            aspect-ratio: 3 / 4;
            border-radius: 12px;
            overflow: visible;
            position: relative;
            border: 4px solid var(--color-gold);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .photo-svg-frame.main::after {
            content: '';
            position: absolute;
            inset: -12px;
            border: 3px solid transparent;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--color-gold), #d4b98a, var(--color-gold));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: all 0.5s ease;
            z-index: -1;
        }

        .photo-svg-frame.main:hover {
            transform: scale(1.03);
            border-color: #d4b98a;
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(184, 149, 106, 0.6);
        }

        .photo-svg-frame.main:hover::after {
            opacity: 1;
            inset: -16px;
            transform: rotate(3deg);
            filter: drop-shadow(0 0 20px rgba(184, 149, 106, 0.8));
        }

        .photo-svg-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            transition: all 0.5s ease;
            display: block;
        }

        .photo-svg-frame.main:hover img {
            filter: brightness(1.08) contrast(1.05);
        }

        .photo-small {
            position: absolute;
            bottom: -1.5rem;
            right: -1rem;
            width: 7rem;
            height: 7rem;
            z-index: 10;
            border-radius: 12px;
            overflow: visible;
            border: 4px solid var(--color-gold);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .photo-small::after {
            content: '';
            position: absolute;
            inset: -10px;
            border: 3px solid transparent;
            border-radius: 16px;
            background: linear-gradient(225deg, #d4b98a, var(--color-gold), #d4b98a);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: all 0.5s ease;
            z-index: -1;
        }

        .photo-small:hover {
            transform: scale(1.1) rotate(-4deg);
            border-color: #d4b98a;
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 25px rgba(184, 149, 106, 0.7);
        }

        .photo-small:hover::after {
            opacity: 1;
            inset: -14px;
            transform: rotate(8deg);
            filter: drop-shadow(0 0 15px rgba(184, 149, 106, 0.9));
        }

        @media (min-width: 768px) {
            .photo-small {
                bottom: -1.5rem;
                right: -2rem;
                width: 9rem;
                height: 9rem;
            }
        }

        .photo-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            transition: all 0.5s ease;
            display: block;
        }

        .photo-small:hover img {
            filter: brightness(1.12) contrast(1.08) saturate(1.1);
        }

        .about-content {
            width: 100%;
        }

        @media (min-width: 1024px) {
            .about-content {
                width: 55%;
                padding-top: 2rem;
            }
        }

        .section-divider {
            width: 2rem;
            height: 1px;
            background: var(--color-gold);
        }

        .about-intro {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .about-content h2 {
            font-size: 2.25rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 640px) {
            .about-content h2 {
                font-size: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .about-content h2 {
                font-size: 3.75rem;
            }
        }

        .about-content .greeting {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-style: italic;
            color: var(--color-gold-light);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            font-size: 1rem;
            color: var(--color-text-muted);
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }

        .about-content h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--color-gold);
            margin: 2.5rem 0 1.5rem;
            font-weight: 600;
        }

        .about-roles {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin: 2.5rem 0;
        }

        .role-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem;
            border-radius: 0.5rem;
            background: #1A1714;
            border: 3px solid rgba(184, 149, 106, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .role-item:hover {
            border-color: var(--color-gold);
            transform: translateY(-2px);
        }

        .role-dot {
            width: 0.625rem;
            height: 0.625rem;
            border-radius: 50%;
            background: var(--color-gold);
            margin-top: 0.375rem;
            flex-shrink: 0;
        }

        .role-item h4 {
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
            font-weight: 600;
        }

        .role-item p {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            margin: 0;
        }

        .cta-button-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--color-gold);
            background: transparent;
            border: 2px solid var(--color-gold);
            cursor: pointer;
            text-decoration: none;
            transition: all 0.4s ease;
        }

        .cta-button-outline:hover {
            background: var(--color-gold);
            color: var(--color-bg);
            transform: translateY(-2px);
        }

        /* EDUCATION SECTION */
        .education-section {
            padding: 5rem 0;
            background: var(--color-bg);
        }

        .education-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .education-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (min-width: 1024px) {
            .education-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2.5rem;
            }
        }

        .education-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--color-section-dark);
            border: 3px solid rgba(184, 149, 106, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
        }

        .education-item:hover {
            border-color: var(--color-gold);
            transform: translateY(-2px);
        }

        .education-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(184, 149, 106, 0.1), rgba(184, 149, 106, 0.05));
            border-radius: 8px;
            color: var(--color-gold);
        }

        .education-item p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--color-text-dark);
            margin: 0;
        }

        /* QUICK INFO SLIDER SECTION */
        .quick-info-section {
            padding: 5rem 0;
            background: var(--color-bg);
        }

        .quick-info-slider {
            position: relative;
            min-height: 400px;
            margin-top: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quick-info-card {
            display: none;
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            overflow: hidden;
        }

        .quick-info-card.active {
            display: flex;
            align-items: center;
        }

        .card-bg-image {
            position: absolute;
            top: 0;
            right: -3cm;
            width: 50%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.25;
            pointer-events: none;
            border-top-right-radius: 80px;
            border-bottom-right-radius: 80px;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            box-shadow: 
                0 0 50px rgba(184, 149, 106, 0.4),
                0 10px 40px rgba(0, 0, 0, 0.2);
            mask-image: linear-gradient(to left, rgba(0,0,0,1) 20%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 20%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0) 100%);
        }

        .quick-info-card[data-bg] .card-bg-image {
            background-image: var(--bg-image);
        }

        .card-content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 600px;
            text-align: left;
        }

        .card-icon {
            width: 80px;
            height: 80px;
            margin: 0 0 2rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(184, 149, 106, 0.1), rgba(184, 149, 106, 0.05));
            border-radius: 50%;
            color: var(--color-gold);
        }

        .quick-info-card h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--color-text);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .quick-info-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--color-text-dark);
        }

        @media (max-width: 768px) {
            .quick-info-card {
                padding: 2rem 1rem;
            }

            .card-content-wrapper {
                max-width: 100%;
                text-align: center;
            }

            .card-icon {
                margin: 0 auto 1.5rem;
            }

            .card-bg-image {
                opacity: 0.08;
            }
        }

        .quick-info-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .quick-info-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid rgba(184, 149, 106, 0.3);
            border-radius: 50%;
            color: var(--color-gold);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quick-info-btn:hover {
            background: var(--color-gold);
            color: var(--color-bg);
            border-color: var(--color-gold);
        }

        .quick-info-dots {
            display: flex;
            gap: 0.75rem;
        }

        .quick-info-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: transparent;
            border: 2px solid rgba(184, 149, 106, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .quick-info-dot:hover {
            border-color: var(--color-gold);
            transform: scale(1.2);
        }

        .quick-info-dot.active {
            background: var(--color-gold);
            border-color: var(--color-gold);
        }

        /* QUOTES SECTION */
        .quotes-section {
            padding: 7rem 0;
            background: var(--color-bg);
            position: relative;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .quotes-section {
                padding: 10rem 0;
            }
        }

        .quotes-section::before,
        .quotes-section::after {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, 
                transparent, 
                rgba(196, 149, 106, 0.15), 
                transparent);
        }

        .quotes-section::before {
            top: 0;
        }

        .quotes-section::after {
            bottom: 0;
        }

        .quote-mark {
            position: absolute;
            top: 2rem;
            left: 2rem;
            font-family: var(--font-heading);
            font-size: 14rem;
            line-height: 1;
            color: rgba(196, 149, 106, 0.05);
            user-select: none;
        }

        @media (min-width: 768px) {
            .quote-mark {
                left: 4rem;
            }
        }

        .quote-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 1.5rem;
            position: relative;
            z-index: 10;
        }

        @media (min-width: 768px) {
            .quote-container {
                padding: 0 3rem;
            }
        }

        .quote-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3.5rem;
        }

        .quote-line {
            width: 2rem;
            height: 1px;
            background: rgba(196, 149, 106, 0.3);
        }

        .quote-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--color-gold);
        }

        .quote-slider {
            min-height: 420px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .quote-item {
            display: none;
            width: 100%;
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
        }

        .quote-item.active {
            display: block;
        }

        .quote-category {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #7B8F6E;
            padding: 0.5rem 1.25rem;
            border-radius: 9999px;
            border: 1px solid rgba(123, 143, 110, 0.2);
            margin-bottom: 2.5rem;
        }

        .quote-text {
            font-family: var(--font-heading);
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 400;
            font-style: italic;
            line-height: 1.25;
            color: var(--color-text);
            margin-bottom: 2.5rem;
        }

        .quote-author-box {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .quote-author-line {
            width: 2rem;
            height: 1px;
            background: rgba(196, 149, 106, 0.3);
        }

        .quote-author {
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            color: var(--color-gold);
        }

        .quote-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-top: 3.5rem;
        }

        .quote-nav-btn {
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: 1px solid rgba(232, 226, 215, 0.1);
            border-radius: 50%;
            cursor: pointer;
            transition: border-color 0.3s;
        }

        .quote-nav-btn:hover {
            border-color: var(--color-gold);
        }

        .quote-nav-btn svg {
            width: 18px;
            height: 18px;
            color: rgba(232, 226, 215, 0.4);
        }

        .quote-dots {
            display: flex;
            gap: 0.75rem;
        }

        .quote-dot {
            height: 3px;
            background: rgba(232, 226, 215, 0.1);
            border-radius: 9999px;
            transition: all 0.5s;
            width: 0.75rem;
            border: none;
            cursor: pointer;
        }

        .quote-dot.active {
            background: var(--color-gold);
            width: 2rem;
        }

        /* CONTACT SECTION */
        .contact-section {
            padding: 6rem 0;
            background: var(--color-bg);
        }

        @media (min-width: 768px) {
            .contact-section {
                padding: 9rem 0;
            }
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        @media (min-width: 768px) {
            .contact-container {
                padding: 0 3rem;
            }
        }

        @media (min-width: 1024px) {
            .contact-container {
                padding: 0 4rem;
            }
        }

        .contact-grid {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        @media (min-width: 1024px) {
            .contact-grid {
                flex-direction: row;
                gap: 6rem;
            }
        }

        .contact-info {
            width: 100%;
        }

        @media (min-width: 1024px) {
            .contact-info {
                width: 38%;
            }
        }

        .contact-intro {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

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

        @media (min-width: 640px) {
            .contact-info h2 {
                font-size: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .contact-info h2 {
                font-size: 3.75rem;
            }
        }

        .contact-info > p {
            font-size: 1rem;
            color: var(--color-text-muted);
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .social-icon-circle {
            width: 2.75rem;
            height: 2.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(184, 149, 106, 0.2);
            border-radius: 50%;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .contact-item:hover .social-icon-circle {
            border-color: var(--color-gold);
            transform: scale(1.1);
        }

        .social-icon-circle svg {
            width: 18px;
            height: 18px;
            color: var(--color-gold-light);
            stroke-width: 1.5;
        }

        .contact-item-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(138, 132, 122, 0.5);
            margin-bottom: 0.125rem;
        }

        .contact-item-value {
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text);
        }

        .link-hover {
            transition: color 0.3s;
            text-decoration: none;
            color: inherit;
        }

        .link-hover:hover {
            color: var(--color-gold);
        }

        .contact-form {
            width: 100%;
        }

        @media (min-width: 1024px) {
            .contact-form {
                width: 62%;
            }
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .form-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .form-input {
            width: 100%;
            padding: 1.25rem 0;
            font-size: 0.95rem;
            font-weight: 400;
            color: var(--color-text);
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(232, 226, 215, 0.1);
            outline: none;
            transition: border-color 0.3s;
        }

        .form-input::placeholder {
            color: rgba(138, 132, 122, 0.4);
        }

        .form-input:focus {
            border-bottom-color: var(--color-gold);
        }

        textarea.form-input {
            resize: none;
            min-height: 150px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--color-bg);
            background: var(--color-gold);
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .cta-button:hover {
            background: var(--color-gold-light);
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(184, 149, 106, 0.3);
        }

        .cta-button svg {
            width: 16px;
            height: 16px;
        }

        /* FOOTER */
        .footer {
            background: var(--color-bg-alt);
            border-top: 1px solid var(--color-border);
        }

        .footer-main {
            padding: 3rem 0;
        }

        .footer .container {
            max-width: 1300px;
        }

        @media (min-width: 768px) {
            .footer-main {
                padding: 3.5rem 0;
            }
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 2fr 0.5fr 0.5fr 0.6fr 2.5fr;
                gap: 2.5rem;
                align-items: start;
            }
        }

        .footer-logo {
            height: 3rem;
            opacity: 1;
            margin-bottom: 1rem;
        }

        /* ICF CREDENTIALS */
        .icf-credentials {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .icf-credentials .footer-title {
            margin-bottom: 1.25rem;
            text-align: center;
        }

        .icf-logos {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 0.6rem;
            margin-bottom: 1rem;
            align-items: center;
            justify-content: center;
        }

        .icf-logo {
            width: 120px;
            max-height: 120px;
            object-fit: contain;
            opacity: 0.8;
            transition: all 0.5s ease;
            filter: grayscale(100%) brightness(0.9);
        }

        .icf-logo:hover {
            opacity: 1;
            filter: grayscale(0%) brightness(1.05);
            transform: scale(1.05);
        }

        .icf-description {
            font-size: 0.85rem;
            color: var(--color-text-dark);
            line-height: 1.7;
            font-weight: 300;
            text-align: center;
        }

        .icf-description strong {
            color: rgba(232, 226, 215, 0.85);
            font-weight: 500;
        }

        .footer-text {
            color: var(--color-text-dark);
            font-size: 0.9rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .footer-title {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #ffffff;
            margin-bottom: 1.25rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-link {
            background-color: transparent;
            border: 2px solid transparent;
            box-sizing: border-box;
            color: var(--color-text-dark);
            cursor: pointer;
            display: inline-block;
            font-weight: 800;
            letter-spacing: 0.05em;
            outline: none;
            overflow: visible;
            padding: 1em 1.5em;
            position: relative;
            text-align: left;
            text-decoration: none;
            text-transform: none;
            transition: all 0.3s ease-in-out;
            user-select: none;
            font-size: 0.875rem;
            width: fit-content;
        }

        .footer-link::before {
            content: " ";
            width: 1.5625rem;
            height: 2px;
            background: var(--color-gold);
            top: 50%;
            left: 1em;
            position: absolute;
            transform: translateY(-50%);
            transition: background 0.3s linear, width 0.3s linear;
        }

        .footer-link span {
            font-size: 1em;
            line-height: 1.33333em;
            padding-left: 2.5em;
            display: block;
            text-align: left;
            transition: all 0.3s ease-in-out;
            color: var(--color-text-dark);
            font-weight: 800;
            text-transform: uppercase;
        }

        .footer-link:hover {
            color: var(--color-bg);
            background: var(--color-gold);
            border-color: var(--color-gold);
        }

        .footer-link:hover::before {
            width: 0.9375rem;
            background: var(--color-bg);
        }

        .footer-link:hover span {
            color: var(--color-bg);
            /* padding-left değişimi kaldırıldı - footer hareket etmemesi için */
        }

        .footer-social-links {
            display: flex;
            gap: 1rem;
            font-size: 0.65rem;
            letter-spacing: 0.2em;
        }

        .footer-bottom {
            border-top: 1px solid var(--color-border);
            padding: 2rem 0 1.5rem;
        }

        .footer-bottom-inner {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
            text-align: left;
        }

        .footer-copyright {
            color: rgba(232, 226, 215, 0.6);
            font-size: 0.75rem;
            line-height: 1.8;
            max-width: 100%;
            font-weight: 300;
        }

        .footer-copyright .copyright-break {
            display: block;
            margin-top: 1rem;
        }

        .footer-copyright strong {
            color: rgba(232, 226, 215, 0.9);
            font-weight: 500;
        }

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

        .footer-copyright a:hover {
            color: #d4b98a;
        }

        /* SOCIAL MEDIA ICONS - UIVERSE STYLE */
        .social-icons-list {
            list-style: none;
            display: flex;
            gap: 0.625rem;
            padding: 0;
            margin: 0;
        }

        .social-icon-item {
            position: relative;
        }

        .social-icon-item .tooltip {
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            padding: 6px 10px;
            border-radius: 15px;
            opacity: 0;
            visibility: hidden;
            font-size: 14px;
            transition: all 0.3s ease;
            white-space: nowrap;
            z-index: 100;
        }

        .social-icon-item:hover .tooltip {
            opacity: 1;
            visibility: visible;
            top: -45px;
        }

        .social-icon-item a {
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            border-radius: 20%;
            color: #4d4d4d;
            background-color: #fff;
            transition: all 0.3s ease-in-out;
        }

        @media (max-width: 768px) {
            .social-icon-item a {
                width: 44px;
                height: 44px;
            }
        }

        .social-icon-item a:hover {
            box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 50%);
            color: white;
        }

        .social-icon-item a svg {
            position: relative;
            z-index: 1;
            width: 18px;
            height: 18px;
        }

        .social-icon-item a .filled {
            position: absolute;
            top: auto;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background-color: #000;
            transition: all 0.3s ease-in-out;
        }

        .social-icon-item a:hover .filled {
            height: 100%;
        }

        .social-icon-item a[data-social="x"] .filled,
        .social-icon-item a[data-social="x"] ~ .tooltip {
            background-color: #000;
        }

        .social-icon-item a[data-social="whatsapp"] .filled,
        .social-icon-item a[data-social="whatsapp"] ~ .tooltip {
            background-color: #25D366;
        }

        .social-icon-item a[data-social="instagram"] .filled,
        .social-icon-item a[data-social="instagram"] ~ .tooltip {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        }

        .social-icon-item a[data-social="spotify"] .filled,
        .social-icon-item a[data-social="spotify"] ~ .tooltip {
            background-color: #1DB954;
        }

        .social-icon-item a[data-social="youtube"] .filled,
        .social-icon-item a[data-social="youtube"] ~ .tooltip {
            background-color: #FF0000;
        }

        .social-icon-item a[data-social="linkedin"] .filled,
        .social-icon-item a[data-social="linkedin"] ~ .tooltip {
            background-color: #0077B5;
        }

        /* NEWSLETTER STYLES */
        .newsletter-form {
            margin-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .newsletter-input {
            width: 100%;
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
            font-family: var(--font-body);
            color: var(--color-text);
            background: rgba(20, 18, 16, 0.5);
            border: 1px solid rgba(232, 226, 215, 0.1);
            outline: none;
            transition: border-color 0.3s;
        }

        .newsletter-input::placeholder {
            color: rgba(138, 132, 122, 0.5);
        }

        .newsletter-input:focus {
            border-color: var(--color-gold);
        }

        .newsletter-btn {
            background-color: transparent;
            border: 2px solid transparent;
            box-sizing: border-box;
            color: var(--color-text-dark);
            cursor: pointer;
            display: inline-block;
            font-weight: 800;
            letter-spacing: 0.05em;
            outline: none;
            overflow: visible;
            padding: 0.85em 1.5em;
            position: relative;
            text-align: left;
            text-decoration: none;
            text-transform: uppercase;
            transition: all 0.3s ease-in-out;
            user-select: none;
            font-size: 0.75rem;
            width: 100%;
            font-family: var(--font-body);
        }

        .newsletter-btn::before {
            content: " ";
            width: 1.5625rem;
            height: 2px;
            background: var(--color-gold);
            top: 50%;
            left: 1em;
            position: absolute;
            transform: translateY(-50%);
            transition: background 0.3s linear, width 0.3s linear;
        }

        .newsletter-btn .btn-text {
            font-size: 1em;
            line-height: 1.33333em;
            padding-left: 2.5em;
            display: block;
            text-align: left;
            transition: all 0.3s ease-in-out;
            color: var(--color-text-dark);
            font-weight: 800;
        }

        .newsletter-btn:hover {
            color: var(--color-bg);
            background: var(--color-gold);
            border-color: var(--color-gold);
        }

        .newsletter-btn:hover::before {
            width: 0.9375rem;
            background: var(--color-bg);
        }

        .newsletter-btn:hover .btn-text {
            color: var(--color-bg);
            padding-left: 2em;
        }

/* ============================================================
   BLOG STYLES
   ============================================================ */

/* BLOG HERO */
.blog-hero {
    padding: 8rem 0 3rem;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(184, 149, 106, 0.1);
}

.blog-hero-content {
    margin-bottom: 2rem;
}

.blog-hero .section-title {
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 2.5rem;
}

@media (min-width: 1024px) {
    .blog-hero .section-title {
        font-size: 3.5rem;
    }
}

.blog-hero-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 500px;
    line-height: 1.6;
}

/* Blog Category Filter */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.blog-cat-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-text-muted);
    border: 1px solid rgba(184, 149, 106, 0.15);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.blog-cat-link:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.blog-cat-link.active {
    color: var(--color-bg);
    background: var(--color-gold);
    border-color: var(--color-gold);
}

/* BLOG ARCHIVE */
.blog-archive-section {
    padding: 3rem 0 6rem;
    background: var(--color-bg);
}

/* BLOG CARD GRID */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* BLOG CARD */
.blog-card {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-section-alt) 0%, var(--color-section-dark) 100%);
    border: 1px solid rgba(184, 149, 106, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 149, 106, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.blog-card-inner {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-section-dark);
}

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

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

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.08) 0%, rgba(184, 149, 106, 0.02) 100%);
    color: rgba(184, 149, 106, 0.3);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.blog-card-category {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(184, 149, 106, 0.25);
    border-radius: 9999px;
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.6rem;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
    color: var(--color-gold);
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    transition: gap 0.3s;
    margin-top: auto;
}

.blog-card:hover .blog-card-readmore {
    gap: 0.75rem;
}

.blog-card-readmore svg {
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-readmore svg {
    transform: translateX(4px);
}

/* PAGINATION */
.blog-pagination {
    margin-top: 4rem;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    border: 1px solid rgba(184, 149, 106, 0.15);
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.blog-pagination .page-numbers.current {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    border-color: rgba(184, 149, 106, 0.3);
}

/* BLOG EMPTY */
.blog-empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--color-text-muted);
}

.blog-empty p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ============================================================
   SINGLE POST STYLES
   ============================================================ */

.single-post .site-header {
    background: rgba(18, 30, 53, 0.95);
    backdrop-filter: blur(12px);
}

/* Post Hero */
.post-hero {
    padding: 8rem 0 3rem;
    background: var(--color-bg);
}

.post-hero-inner {
    max-width: 800px;
}

/* Back to Blog Button - styled with border and effects */
.post-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding: 0.65rem 1.5rem 0.65rem 1.2rem;
    border: 1px solid rgba(184, 149, 106, 0.35);
    border-radius: 9999px;
    background: rgba(184, 149, 106, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.post-back-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-gold);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
    border-radius: inherit;
}

.post-back-link svg,
.post-back-link span {
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.post-back-link:hover {
    border-color: var(--color-gold);
    transform: translateX(-4px);
    box-shadow: 0 4px 20px rgba(184, 149, 106, 0.2);
}

.post-back-link:hover::before {
    width: 100%;
}

.post-back-link:hover svg,
.post-back-link:hover span {
    color: var(--color-bg);
}

.post-back-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.post-back-link:hover svg {
    transform: translateX(-3px);
}

.post-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.post-category-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-decoration: none;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(184, 149, 106, 0.25);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.post-category-badge:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.post-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.post-meta-bottom {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.post-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(184, 149, 106, 0.3);
}

.post-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.post-author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.post-date {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Featured Image */
.post-featured-image {
    padding: 0 0 3rem;
    background: var(--color-bg);
}

.post-featured-image img {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    border: 1px solid rgba(184, 149, 106, 0.1);
}

/* Post Content */
.post-content-section {
    padding: 0 0 4rem;
    background: var(--color-bg);
}

.post-content {
    max-width: 800px;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-text-muted);
}

/* Fix content spacing - ensures proper line breaks and paragraph gaps */
.post-content > * + * {
    margin-top: 1.25rem;
}

.post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-text);
    margin: 2.5rem 0 1rem;
    font-weight: 500;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(184, 149, 106, 0.15);
}

.post-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-text);
    margin: 2rem 0 0.75rem;
    font-weight: 500;
}

.post-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-gold);
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 1.25rem;
    line-height: 1.9;
}

.post-content p:empty {
    display: block;
    height: 0.5rem;
}

/* Handle <br> tags properly */
.post-content br {
    display: block;
    content: "";
    margin-top: 0.5rem;
}

.post-content a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.post-content a:hover {
    color: #d4b98a;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid rgba(184, 149, 106, 0.1);
}

.post-content blockquote {
    border-left: 3px solid var(--color-gold);
    padding: 1.25rem 0 1.25rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-text);
    font-size: 1.1rem;
    background: rgba(184, 149, 106, 0.03);
    border-radius: 0 8px 8px 0;
}

.post-content blockquote p {
    margin-bottom: 0.5rem;
}

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

.post-content ul,
.post-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.post-content li::marker {
    color: var(--color-gold);
}

.post-content strong {
    color: var(--color-text);
    font-weight: 600;
}

.post-content em {
    color: var(--color-text);
    font-style: italic;
}

.post-content figure {
    margin: 2rem 0;
}

.post-content figcaption {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

.post-content .wp-block-image {
    margin: 2rem 0;
}

/* Elementor content compatibility */
.post-content .elementor-widget-text-editor p,
.post-content .elementor-text-editor p {
    margin-bottom: 1.25rem;
    line-height: 1.9;
}

.post-content .elementor-section {
    margin-bottom: 1.5rem;
}

.post-content .elementor-widget {
    margin-bottom: 1rem;
}

/* WordPress block editor spacing */
.post-content .wp-block-separator {
    border-color: rgba(184, 149, 106, 0.2);
    margin: 2rem 0;
}

.post-content .wp-block-quote {
    border-left: 3px solid var(--color-gold);
    padding-left: 1.5rem;
}

.post-content .has-text-align-center {
    text-align: center;
}

/* Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(184, 149, 106, 0.1);
    max-width: 800px;
}

.post-tags-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(184, 149, 106, 0.3);
    border-radius: 9999px;
    background: rgba(184, 149, 106, 0.05);
    margin-right: 0.5rem;
}

.post-tags-label svg {
    width: 14px;
    height: 14px;
}

.post-tag {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 0.3rem 0.75rem;
    border: 1px solid rgba(184, 149, 106, 0.1);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.post-tag:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

/* Share Section - styled with frame and site-matching social icons */
.post-share {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 149, 106, 0.1);
    max-width: 800px;
}

.post-share-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(184, 149, 106, 0.3);
    border-radius: 9999px;
    background: rgba(184, 149, 106, 0.05);
}

.post-share-label svg {
    width: 14px;
    height: 14px;
}

.post-share .social-icons-list {
    gap: 0.625rem;
}

/* ============================================================
   COMMENTS SECTION
   ============================================================ */
.post-comments-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 149, 106, 0.1);
    max-width: 800px;
}

/* Comments Title */
.post-comments-section .comments-title,
.post-comments-section h2.comments-title {
    font-family: var(--font-heading) !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: var(--color-text) !important;
    margin-bottom: 2rem !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

/* Comment List */
.post-comments-section .comment-list,
.post-comments-section ol.comment-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.post-comments-section .comment-list .comment,
.post-comments-section .comment-list li.comment {
    padding: 1.5rem 0 !important;
    border-bottom: 1px solid rgba(184, 149, 106, 0.07) !important;
    list-style: none !important;
    background: none !important;
}

.post-comments-section .comment-list .comment:last-child {
    border-bottom: none !important;
}

/* Nested replies */
.post-comments-section .comment-list .children,
.post-comments-section .comment-list ol.children {
    list-style: none !important;
    padding-left: 2rem !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    border-left: 2px solid rgba(184, 149, 106, 0.15) !important;
}

/* Comment Author */
.post-comments-section .comment-author,
.post-comments-section .comment-body .comment-author {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-bottom: 0.5rem !important;
}

.post-comments-section .comment-author img,
.post-comments-section .comment-author .avatar {
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
}

.post-comments-section .comment-author .fn,
.post-comments-section .comment-author .fn a,
.post-comments-section .comment-author b {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--color-text) !important;
    text-decoration: none !important;
}

.post-comments-section .comment-author .says {
    display: none !important;
}

/* Comment Meta (date) */
.post-comments-section .comment-metadata,
.post-comments-section .comment-meta,
.post-comments-section .comment-body .comment-metadata {
    font-size: 0.8rem !important;
    color: var(--color-text-muted) !important;
    margin-bottom: 0.75rem !important;
    padding-left: 0 !important;
}

.post-comments-section .comment-metadata a,
.post-comments-section .comment-metadata time {
    color: var(--color-text-muted) !important;
    text-decoration: none !important;
}

.post-comments-section .comment-metadata a:hover {
    color: var(--color-gold) !important;
}

/* Comment Body */
.post-comments-section .comment-content,
.post-comments-section .comment-content p,
.post-comments-section .comment-body p {
    font-size: 0.95rem !important;
    color: var(--color-text) !important;
    line-height: 1.7 !important;
    font-weight: 300 !important;
    background: none !important;
}

/* Reply Link */
.post-comments-section .reply a,
.post-comments-section a.comment-reply-link {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--color-gold) !important;
    text-decoration: none !important;
    padding: 0.3rem 0.75rem !important;
    border: 1px solid rgba(184, 149, 106, 0.25) !important;
    border-radius: 9999px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    margin-top: 0.5rem !important;
    background: none !important;
}

.post-comments-section .reply a:hover,
.post-comments-section a.comment-reply-link:hover {
    background: rgba(184, 149, 106, 0.1) !important;
    border-color: var(--color-gold) !important;
}

/* ---- Comment Form ---- */
.post-comments-section .comment-respond,
.post-comments-section #respond {
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
    background: none !important;
    border: none !important;
}

.post-comments-section .comment-reply-title,
.post-comments-section #reply-title {
    font-family: var(--font-heading) !important;
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    color: var(--color-text) !important;
    margin-bottom: 1.25rem !important;
    background: none !important;
}

.post-comments-section .comment-reply-title small a {
    font-size: 0.8rem !important;
    color: var(--color-gold) !important;
    text-decoration: none !important;
    margin-left: 0.5rem !important;
}

.post-comments-section .comment-form,
.post-comments-section #commentform {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.post-comments-section .comment-form p,
.post-comments-section #commentform p {
    margin: 0 !important;
}

.post-comments-section .comment-form label,
.post-comments-section #commentform label {
    display: block !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    color: var(--color-text-muted) !important;
    margin-bottom: 0.4rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-family: var(--font-body) !important;
}

/* ALL form inputs - class + ID selectors for maximum specificity */
.post-comments-section .comment-form input[type="text"],
.post-comments-section .comment-form input[type="email"],
.post-comments-section .comment-form input[type="url"],
.post-comments-section .comment-form textarea,
.post-comments-section #commentform input[type="text"],
.post-comments-section #commentform input[type="email"],
.post-comments-section #commentform input[type="url"],
.post-comments-section #commentform textarea,
.post-comments-section #author,
.post-comments-section #email,
.post-comments-section #url,
.post-comments-section #comment {
    width: 100% !important;
    padding: 1rem 0 !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    font-family: var(--font-body) !important;
    color: var(--color-text) !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(232, 226, 215, 0.1) !important;
    border-radius: 0 !important;
    outline: none !important;
    transition: border-color 0.3s !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
}

.post-comments-section .comment-form input[type="text"]:focus,
.post-comments-section .comment-form input[type="email"]:focus,
.post-comments-section .comment-form input[type="url"]:focus,
.post-comments-section .comment-form textarea:focus,
.post-comments-section #author:focus,
.post-comments-section #email:focus,
.post-comments-section #url:focus,
.post-comments-section #comment:focus {
    border-bottom-color: var(--color-gold) !important;
    outline: none !important;
    box-shadow: none !important;
}

.post-comments-section .comment-form textarea,
.post-comments-section #comment {
    resize: vertical !important;
    min-height: 120px !important;
}

/* Two column layout for name/email */
.post-comments-section .comment-form-author,
.post-comments-section .comment-form-email {
    display: inline-block !important;
    width: calc(50% - 0.625rem) !important;
    vertical-align: top !important;
}

.post-comments-section .comment-form-author {
    margin-right: 1.25rem !important;
}

@media (max-width: 640px) {
    .post-comments-section .comment-form-author,
    .post-comments-section .comment-form-email {
        display: block !important;
        width: 100% !important;
    }
    .post-comments-section .comment-form-author {
        margin-right: 0 !important;
    }
}

/* URL field - hide it */
.post-comments-section .comment-form-url {
    display: none !important;
}

/* Cookies consent checkbox */
.post-comments-section .comment-form-cookies-consent {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.post-comments-section .comment-form-cookies-consent input[type="checkbox"] {
    accent-color: var(--color-gold) !important;
    width: 16px !important;
    height: 16px !important;
    -webkit-appearance: auto !important;
    appearance: auto !important;
    border: none !important;
}

.post-comments-section .comment-form-cookies-consent label {
    display: inline !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 0.85rem !important;
    color: var(--color-text-muted) !important;
}

/* Submit Button */
.post-comments-section .comment-form .form-submit .submit,
.post-comments-section .comment-form input[type="submit"],
.post-comments-section #commentform input[type="submit"],
.post-comments-section #commentform .submit,
.post-comments-section #submit {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 1rem 2rem !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: var(--color-bg) !important;
    background: var(--color-gold) !important;
    border: none !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    font-family: var(--font-body) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
    width: auto !important;
}

.post-comments-section .comment-form .form-submit .submit:hover,
.post-comments-section .comment-form input[type="submit"]:hover,
.post-comments-section #submit:hover {
    background: var(--color-gold-light) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 50px rgba(184, 149, 106, 0.3) !important;
}

/* No comments yet */
.post-comments-section .no-comments {
    font-size: 0.95rem !important;
    color: var(--color-text-muted) !important;
    font-weight: 300 !important;
}

/* Logged in as */
.post-comments-section .logged-in-as,
.post-comments-section .logged-in-as p {
    font-size: 0.85rem !important;
    color: var(--color-text-muted) !important;
}

.post-comments-section .logged-in-as a {
    color: var(--color-gold) !important;
    text-decoration: none !important;
}

/* Notes before form */
.post-comments-section .comment-notes {
    font-size: 0.85rem !important;
    color: var(--color-text-muted) !important;
    font-weight: 300 !important;
}

/* Required asterisk */
.post-comments-section .required {
    color: var(--color-gold) !important;
}

/* Allowed tags info */
.post-comments-section .form-allowed-tags {
    display: none !important;
}

/* Comment navigation */
.post-comments-section .comment-navigation {
    display: flex !important;
    justify-content: space-between !important;
    padding: 1rem 0 !important;
    font-size: 0.85rem !important;
}

.post-comments-section .comment-navigation a {
    color: var(--color-gold) !important;
    text-decoration: none !important;
}

/* Related Posts */
.related-posts-section {
    padding: 4rem 0 6rem;
    background: var(--color-bg);
    border-top: 1px solid rgba(184, 149, 106, 0.1);
}

/* ============================================================
   NAV LINK STYLES (all <a> tags now)
   ============================================================ */
.nav-inline-link {
    text-decoration: none;
}

a.nav-inline-link.active {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

a.nav-inline-link.active .text {
    color: var(--color-bg);
}

a.nav-inline-link.active::before {
    background: var(--color-bg);
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
/* ============================================================
   MOBILE CLOSE BUTTON
   ============================================================ */
.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1.5px solid rgba(184, 149, 106, 0.4);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.mobile-menu-overlay.active .mobile-menu-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    transition-delay: 0.15s;
}

.mobile-menu-close:hover {
    border-color: var(--color-gold);
    background: rgba(184, 149, 106, 0.1);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(184, 149, 106, 0.2);
}

.mobile-menu-close .close-line {
    position: absolute;
    width: 20px;
    height: 1.5px;
    background: var(--color-gold);
    transition: all 0.3s;
}

.mobile-menu-close .close-line:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close .close-line:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-menu-close:hover .close-line {
    background: #fff;
    width: 22px;
}

.mobile-menu-close .close-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px solid transparent;
    transition: all 0.4s;
}

.mobile-menu-close:hover .close-ring {
    border-color: rgba(184, 149, 106, 0.3);
    transform: scale(1.3);
    opacity: 0;
}

/* Desktop: also show close button for consistency */
@media (min-width: 1025px) {
    .mobile-menu-close {
        top: 2rem;
        right: 2rem;
        width: 52px;
        height: 52px;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 20, 38, 0.97);
    backdrop-filter: blur(20px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-inner {
    text-align: center;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    padding: 0.75rem 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--color-gold);
}

.mobile-menu-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.4s;
}

.mobile-menu-overlay.active .mobile-menu-social {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-social a {
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.mobile-menu-social a:hover {
    color: var(--color-gold);
}

/* Hamburger active state (X) */
.hamburger.active .hamburger-line:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.hamburger.active .hamburger-line:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Additional social platform colors for share buttons */
.social-icon-item a[data-social="facebook"] .filled,
.social-icon-item a[data-social="facebook"] ~ .tooltip {
    background-color: #1877F2;
}

.social-icon-item a[data-social="telegram"] .filled,
.social-icon-item a[data-social="telegram"] ~ .tooltip {
    background-color: #0088cc;
}

.social-icon-item a[data-social="pinterest"] .filled,
.social-icon-item a[data-social="pinterest"] ~ .tooltip {
    background-color: #E60023;
}

.social-icon-item a[data-social="email"] .filled,
.social-icon-item a[data-social="email"] ~ .tooltip {
    background-color: #B8956A;
}

/* Ensure share section tooltips are visible */
.post-share .social-icon-item .tooltip {
    top: -35px;
}

.post-share .social-icon-item:hover .tooltip {
    top: -45px;
}

/* ============================================================
   GOOGLE TRANSLATE - Hide default UI
   ============================================================ */
.goog-te-banner-frame,
.skiptranslate,
#goog-gt-tt {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* ============================================================
   CONTACT FORM 7 - Exact match to site form design
   ============================================================ */
.cf7-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cf7-form-wrapper .wpcf7-form p {
    margin: 0;
}

/* All input/textarea fields - match .form-input exactly */
.cf7-form-wrapper input[type="text"],
.cf7-form-wrapper input[type="email"],
.cf7-form-wrapper input[type="tel"],
.cf7-form-wrapper input[type="url"],
.cf7-form-wrapper textarea {
    width: 100%;
    padding: 1.25rem 0;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--color-text);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(232, 226, 215, 0.1);
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.cf7-form-wrapper input[type="text"]::placeholder,
.cf7-form-wrapper input[type="email"]::placeholder,
.cf7-form-wrapper input[type="tel"]::placeholder,
.cf7-form-wrapper textarea::placeholder {
    color: rgba(138, 132, 122, 0.4);
}

.cf7-form-wrapper input[type="text"]:focus,
.cf7-form-wrapper input[type="email"]:focus,
.cf7-form-wrapper input[type="tel"]:focus,
.cf7-form-wrapper textarea:focus {
    border-bottom-color: var(--color-gold);
}

.cf7-form-wrapper textarea {
    resize: none;
    min-height: 150px;
}

/* Submit button - match .cta-button exactly */
.cf7-form-wrapper input[type="submit"],
.cf7-form-wrapper .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-bg);
    background: var(--color-gold);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: var(--font-body);
    -webkit-appearance: none;
    appearance: none;
}

.cf7-form-wrapper input[type="submit"]:hover,
.cf7-form-wrapper .wpcf7-submit:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(184, 149, 106, 0.3);
}

/* Validation messages */
.cf7-form-wrapper .wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

.cf7-form-wrapper .wpcf7-response-output {
    padding: 1rem;
    border: 1px solid rgba(184, 149, 106, 0.3);
    font-size: 0.9rem;
    margin: 1rem 0 0;
    color: var(--color-text-muted);
}

.cf7-form-wrapper .wpcf7-mail-sent-ok {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.cf7-form-wrapper .wpcf7-validation-errors {
    border-color: #e74c3c;
    color: #e74c3c;
}

/* Hide CF7 spinner */
.cf7-form-wrapper .wpcf7-spinner {
    display: none;
}

/* Remove CF7 default styling overrides */
.cf7-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}