/*
Theme Name: Tarana Pashayeva
Theme URI: https://taranapashayeva.az
Author: LOQOS
Author URI: https://taranapashayeva.az
Description: Personal single-page theme for Dr. Tarana Pashayeva — PhD Psychologist and Founder of the LOQOS Center. Trilingual (RU/AZ/EN), warm neutral palette, built from a hand-crafted static design.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tarana-pashayeva
*/

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

        :root {
            --cream: #FAF8F5;
            --warm-white: #F5F2EE;
            --stone: #E8E3DB;
            --taupe: #C4B8A8;
            --charcoal: #2C2825;
            --dark: #1A1714;
            --accent: #8B6F52;
            --accent-light: #D4B896;
            --gold: #B8926A;
            --muted: #7A6E65;
            --scroll-duration: 0.3s;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: var(--cream);
            color: var(--charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }

        body.lang-ru [data-lang="az"],
        body.lang-ru [data-lang="en"],
        body.lang-az [data-lang="ru"],
        body.lang-az [data-lang="en"],
        body.lang-en [data-lang="ru"],
        body.lang-en [data-lang="az"] {
            display: none !important;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        h1 {
            font-size: 4rem;
        }

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

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1rem;
        }

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

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

        button {
            font-family: 'DM Sans', sans-serif;
        }

        /* NAVBAR */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(0px);
            background-color: rgba(250, 248, 245, 0);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            backdrop-filter: blur(10px);
            background-color: rgba(250, 248, 245, 0.8);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        }

        .navbar-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--charcoal);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.95rem;
            color: var(--charcoal);
            font-weight: 500;
            position: relative;
            padding-bottom: 0.25rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-controls {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .lang-switcher {
            display: flex;
            gap: 0.8rem;
            align-items: center;
        }

        .lang-btn {
            padding: 0.5rem 1rem;
            border: 1px solid var(--taupe);
            background-color: transparent;
            color: var(--charcoal);
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .lang-btn.active {
            background-color: var(--accent);
            color: var(--cream);
            border-color: var(--accent);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 0.5rem;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background-color: var(--charcoal);
            transition: all 0.3s ease;
        }

        /* HERO */
        .hero {
            padding: 8rem 5% 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-left {
            z-index: 2;
        }

        .eyebrow {
            font-size: 0.95rem;
            color: var(--accent);
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .hero-name {
            font-size: 4rem;
            color: var(--charcoal);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--muted);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .hero-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            color: var(--accent);
            margin: 2rem 0;
            padding-left: 1.5rem;
            border-left: 3px solid var(--accent);
            font-style: italic;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

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

        .btn-primary:hover {
            background-color: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(139, 111, 82, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }

        .btn-secondary:hover {
            background-color: var(--accent);
            color: white;
            transform: translateY(-2px);
        }

        .hero-badges {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .badge {
            background: rgba(212, 184, 150, 0.15);
            backdrop-filter: blur(10px);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 1px solid rgba(212, 184, 150, 0.3);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent);
        }

        .hero-right {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
        }

        .photo-frame {
            width: 350px;
            height: 450px;
            position: relative;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            overflow: hidden;
            background: linear-gradient(135deg, var(--accent-light), var(--taupe));
            animation: morph 8s ease-in-out infinite;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .photo-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes morph {
            0%, 100% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
            25% {
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
            50% {
                border-radius: 70% 30% 60% 40% / 40% 60% 30% 70%;
            }
            75% {
                border-radius: 40% 60% 70% 30% / 70% 40% 60% 30%;
            }
        }

        /* ABOUT */
        .about {
            padding: 6rem 5%;
            background-color: var(--warm-white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .about-text {
            line-height: 1.8;
            color: var(--charcoal);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-card {
            background: rgba(212, 184, 150, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(212, 184, 150, 0.2);
            text-align: center;
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--accent);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--muted);
            margin-top: 0.5rem;
        }

        .about-photo {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .about-photo img {
            width: 100%;
            height: auto;
            display: block;
        }

        .specializations {
            margin-top: 2rem;
        }

        .spec-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .spec-tag {
            background-color: var(--accent);
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* EDUCATION */
        .education {
            padding: 6rem 5%;
            background-color: var(--cream);
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent), transparent);
        }

        .timeline-item {
            margin-bottom: 3rem;
            width: 45%;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .timeline-item:nth-child(odd) {
            margin-left: 0;
        }

        .timeline-item:nth-child(even) {
            margin-left: auto;
        }

        .timeline-content {
            background: rgba(212, 184, 150, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(212, 184, 150, 0.2);
            position: relative;
        }

        .timeline-content::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: var(--accent);
            border: 3px solid var(--cream);
            border-radius: 50%;
            top: 1.5rem;
            right: -45px;
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            left: -45px;
            right: auto;
        }

        .timeline-year {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .timeline-desc {
            font-size: 0.95rem;
            color: var(--muted);
        }

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

        /* MEMBERSHIPS */
        .memberships {
            padding: 6rem 5%;
            background-color: var(--warm-white);
        }

        .memberships-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .membership-card {
            background: rgba(212, 184, 150, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 184, 150, 0.2);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .membership-card:hover {
            transform: translateY(-10px);
            background: rgba(212, 184, 150, 0.2);
            border-color: var(--accent-light);
        }

        .membership-emoji {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .membership-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .membership-desc {
            font-size: 0.9rem;
            color: var(--muted);
        }

        /* BOOK SECTION */
        .book-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
            color: var(--cream);
        }

        .book-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .book-cover {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            transform: perspective(1000px) rotateY(-10deg);
        }

        .book-cover img {
            width: 100%;
            height: auto;
            display: block;
        }

        .book-info h2 {
            color: var(--cream);
            margin-bottom: 1rem;
        }

        .book-author {
            font-size: 1.1rem;
            color: var(--accent-light);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .book-description {
            font-size: 1.05rem;
            line-height: 1.8;
            color: rgba(250, 248, 245, 0.9);
            margin-bottom: 2rem;
        }

        .book-btn {
            background-color: var(--accent-light);
            color: var(--dark);
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .book-btn:hover {
            background-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* EVENTS SECTION */
        .events {
            padding: 6rem 5%;
            background-color: var(--warm-white);
        }

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

        .event-card {
            background: var(--cream);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .event-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: linear-gradient(135deg, var(--accent-light), var(--taupe));
        }

        .event-content {
            padding: 1.5rem;
        }

        .event-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 0.8rem;
        }

        .event-description {
            font-size: 0.95rem;
            color: var(--muted);
            line-height: 1.6;
        }

        /* EVENT MODAL */
        .event-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.85);
            z-index: 2000;
            display: none;
            overflow-y: auto;
            padding: 2rem;
        }
        .event-modal-overlay.open {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }
        .event-modal {
            background: var(--cream);
            border-radius: 20px;
            max-width: 1100px;
            width: 100%;
            margin: 2rem auto;
            overflow: hidden;
            position: relative;
            animation: modalIn 0.3s ease;
        }
        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.95) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }
        .event-modal-close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            background: rgba(0,0,0,0.5);
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        .event-modal-close:hover {
            background: rgba(0,0,0,0.8);
        }
        .event-modal-header {
            position: relative;
        }
        .event-modal-header img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        .event-modal-body {
            padding: 2rem 2.5rem;
        }
        .event-modal-body h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--charcoal);
        }
        .event-modal-body .event-modal-desc {
            font-size: 1.05rem;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        .event-modal-body h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        .event-modal-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        .event-modal-gallery img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .event-modal-gallery img:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        /* Event Lightbox (fullscreen single photo) */
        .event-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.95);
            z-index: 3000;
            display: none;
            justify-content: center;
            align-items: center;
        }
        .event-lightbox.open {
            display: flex;
        }
        .event-lightbox img {
            max-width: 90vw;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
        }
        .event-lightbox-close {
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            background: none;
            border: none;
            color: #fff;
            font-size: 2.5rem;
            cursor: pointer;
        }
        .event-lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.15);
            border: none;
            color: #fff;
            font-size: 2.5rem;
            padding: 0.5rem 1rem;
            cursor: pointer;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .event-lightbox-nav:hover {
            background: rgba(255,255,255,0.3);
        }
        .event-lightbox-prev { left: 1.5rem; }
        .event-lightbox-next { right: 1.5rem; }

        @media (max-width: 768px) {
            .event-modal-header img { height: 220px; }
            .event-modal-body { padding: 1.5rem; }
            .event-modal-body h2 { font-size: 1.5rem; }
            .event-modal-gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
            .event-modal-gallery img { height: 130px; }
        }

        /* CENTERS SECTION */
        .centers {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
            color: var(--cream);
        }

        .centers h2 {
            color: var(--cream);
        }

        .centers-main {
            background: rgba(212, 184, 150, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 184, 150, 0.2);
            padding: 2.5rem;
            border-radius: 16px;
            margin-bottom: 2rem;
        }

        .center-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--accent-light);
            margin-bottom: 0.5rem;
        }

        .center-details {
            font-size: 1rem;
            color: rgba(250, 248, 245, 0.8);
            margin-bottom: 1rem;
        }

        .center-desc {
            color: rgba(250, 248, 245, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .branches-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .branch-card {
            background: rgba(212, 184, 150, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 184, 150, 0.15);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
        }

        .branch-name {
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent-light);
        }

        /* PHOTO GALLERY */
        .gallery {
            padding: 6rem 5%;
            background: var(--warm-white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 300px;
            gap: 12px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(44, 40, 37, 0.15);
            z-index: 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        .gallery-item.tall {
            grid-row: span 2;
        }

        .gallery-item.wide {
            grid-column: span 2;
        }

        .gallery-item .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 23, 20, 0.6) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay span {
            color: var(--cream);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.03em;
        }

        /* Gallery Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(26, 23, 20, 0.95);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .lightbox.open {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .lightbox img {
            max-width: 90vw;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: var(--cream);
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: var(--cream);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .lightbox-prev { left: 2rem; }
        .lightbox-next { right: 2rem; }

        /* QUOTE SECTION */
        .quote-section {
            padding: 4rem 5%;
            background-color: var(--cream);
            text-align: center;
        }

        .quote-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            color: var(--accent);
            font-style: italic;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }

        /* CONTACT */
        .contact {
            padding: 6rem 5%;
            background-color: var(--warm-white);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-weight: 600;
            color: var(--charcoal);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem;
            border: 1px solid var(--taupe);
            border-radius: 8px;
            background-color: var(--cream);
            color: var(--charcoal);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            padding: 1.5rem;
            background: rgba(212, 184, 150, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(212, 184, 150, 0.2);
        }

        .contact-item-title {
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .contact-item-content {
            color: var(--charcoal);
        }

        .contact-item-content a {
            display: block;
            margin-bottom: 0.5rem;
        }

        .contact-photo {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-top: 1rem;
        }

        .contact-photo img {
            width: 100%;
            height: auto;
            display: block;
        }

        .contact-map {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            margin-top: 2rem;
            border: 1px solid rgba(212, 184, 150, 0.2);
            grid-column: 1 / -1;
        }

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

        /* FOOTER */
        footer {
            background: var(--dark);
            color: var(--cream);
            padding: 3rem 5%;
            text-align: center;
            border-top: 1px solid rgba(212, 184, 150, 0.1);
        }

        footer p {
            margin-bottom: 0.5rem;
            color: rgba(250, 248, 245, 0.8);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1.5rem 0;
        }

        .social-links a {
            color: var(--accent-light);
            font-weight: 600;
        }

        /* SCROLL REVEAL */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 6rem 5% 4rem;
            }

            .hero-right {
                margin-top: 2rem;
            }

            .photo-frame {
                width: 300px;
                height: 400px;
            }

            .about-content,
            .book-container,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-item {
                width: 100%;
                margin-left: 80px !important;
            }

            .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: -55px;
                right: auto;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(10px, 10px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

            nav.mobile-open .nav-links {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(250, 248, 245, 0.95);
                backdrop-filter: blur(10px);
                padding: 2rem;
                gap: 1rem;
            }

            nav.mobile-open .nav-links li a {
                padding: 0.5rem 0;
                display: block;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .navbar-logo {
                font-size: 1rem;
            }

            .lang-switcher {
                gap: 0.5rem;
            }

            .lang-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.75rem;
            }

            .hero-badges {
                gap: 0.8rem;
            }

            .badge {
                padding: 0.6rem 1.2rem;
                font-size: 0.8rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .photo-frame {
                width: 250px;
                height: 320px;
            }

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

            .btn {
                width: 100%;
                text-align: center;
            }

            .events-grid {
                grid-template-columns: 1fr;
            }

            .spec-tags {
                gap: 0.6rem;
            }

            .spec-tag {
                padding: 0.4rem 1rem;
                font-size: 0.8rem;
            }

            .membership-card {
                padding: 1.5rem;
            }

            .book-section,
            .contact {
                padding: 4rem 5%;
            }

            .contact-item {
                padding: 1rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 220px;
            }

            .quote-text {
                font-size: 1.5rem;
            }

            .hero-quote {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem 4%;
            }

            .nav-controls {
                gap: 1rem;
            }

            h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.3rem;
            }

            .navbar-logo {
                font-size: 0.9rem;
            }

            .hero {
                padding: 5rem 4% 2rem;
            }

            .hero-name {
                font-size: 2.2rem;
                margin-bottom: 0.8rem;
            }

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

            .eyebrow {
                font-size: 0.8rem;
            }

            .photo-frame {
                width: 200px;
                height: 260px;
            }

            .about,
            .education,
            .memberships,
            .book-section,
            .events,
            .centers,
            .contact,
            .quote-section {
                padding: 3rem 4%;
            }

            .about-text p {
                font-size: 0.95rem;
            }

            .timeline-item {
                margin-left: 60px !important;
            }

            .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: -40px;
            }

            .memberships-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .membership-card {
                padding: 1.2rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-auto-rows: 180px;
                gap: 8px;
            }

            .gallery-item.tall {
                grid-row: span 2;
            }

            .gallery-item.wide {
                grid-column: span 1;
            }

            .quote-text {
                font-size: 1.2rem;
            }
        }
