/* ==========================================================================
   ASTRA TAROT - MODERNE MYSTIC DESIGN SYSTEM (style.css)
   ========================================================================== */

/* 1. RESET & DEĞİŞKENLER */
:root {
    --bg-deep: #06030d;
    --bg-cosmic: #0c0822;
    --bg-card: rgba(20, 15, 45, 0.6);
    --bg-card-hover: rgba(32, 23, 71, 0.85);

    --color-gold: #d4af37;
    --color-gold-glow: #ffd700;
    --color-purple: #8a2be2;
    --color-magenta: #bd00ff;
    --color-cyan: #00f0ff;

    --text-primary: #f5f5f7;
    --text-secondary: #c9c3e6;
    --text-dark: #0a051b;

    --border-glass: rgba(212, 175, 55, 0.15);
    --border-glass-active: rgba(212, 175, 55, 0.4);

    --font-headings: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-purple: 0 0 20px rgba(189, 0, 255, 0.25);
    --shadow-cyan: 0 0 15px rgba(0, 240, 255, 0.2);

    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--color-gold);
}

.gold-glow {
    color: var(--color-gold-glow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* 2. KOZMİK ARKA PLAN (Yıldızlar ve Nebula) */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.stars,
.stars2,
.stars3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: radial-gradient(1.5px 1.5px at 20px 30px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 90px 10px, #fff, rgba(0, 0, 0, 0));
    background-size: 150px 150px;
    opacity: 0.3;
    animation: starMove 120s linear infinite;
}

.stars2 {
    background: radial-gradient(2px 2px at 25px 85px, #ffd700, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 75px 15px, #fff, rgba(0, 0, 0, 0));
    background-size: 250px 250px;
    opacity: 0.4;
    animation: starMove 80s linear infinite;
}

.stars3 {
    background: radial-gradient(3px 3px at 50px 50px, #bd00ff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 150px 180px, #00f0ff, rgba(0, 0, 0, 0));
    background-size: 350px 350px;
    opacity: 0.2;
    animation: starMove 50s linear infinite;
}

.nebula {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.08) 0%, rgba(189, 0, 255, 0.04) 30%, rgba(6, 3, 13, 0) 70%);
    z-index: -1;
    filter: blur(80px);
    animation: nebulaPulse 20s ease-in-out infinite alternate;
}

@keyframes starMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-1000px);
    }
}

@keyframes nebulaPulse {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(5%, 5%);
    }
}

/* 3. BUTONLAR VE ORTAK UI ELEMANLARI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--text-dark);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: buttonShine 4s infinite;
}

@keyframes buttonShine {
    0% {
        transform: translate(-100%, -100%) rotate(30deg);
    }

    30% {
        transform: translate(100%, 100%) rotate(30deg);
    }

    100% {
        transform: translate(100%, 100%) rotate(30deg);
    }
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* 4. HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 3, 13, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    margin-right: 12px;
    border: 1.5px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
    object-fit: cover;
}

.logo-icon {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-right: 8px;
    text-shadow: var(--shadow-gold);
}

.logo-text {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.main-nav a:hover {
    color: var(--color-gold-glow);
}

.btn-nav-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.icon-whatsapp {
    width: 16px;
    height: 16px;
}

/* 5. HERO SECTION */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 90vh;
}

.hero-content {
    max-width: 850px;
    z-index: 2;
}

.mystic-seal-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-logo-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid var(--color-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    object-fit: cover;
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    }

    50% {
        transform: translateY(-12px) rotate(1.5deg);
        box-shadow: 0 0 45px rgba(212, 175, 55, 0.8), 0 0 20px rgba(189, 0, 255, 0.4);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    }
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.icon-whatsapp-btn {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

/* 6. BİZ KİMİZ (ABOUT) SECTION */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(6, 3, 13, 0) 0%, rgba(12, 8, 34, 0.4) 50%, rgba(6, 3, 13, 0) 100%);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

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

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    position: relative;
}

.mystic-card-stack {
    position: relative;
    width: 200px;
    height: 320px;
}

.stacked-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    box-shadow: var(--shadow-purple);
    transition: var(--transition-smooth);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 160' fill='none' stroke='%23d4af37' stroke-width='0.5'%3E%3Crect x='5' y='5' width='90' height='150' rx='8'/%3E%3Ccircle cx='50' cy='80' r='25' stroke-dasharray='3,3'/%3E%3Cpath d='M50,15 L50,145 M15,80 L85,80'/%3E%3Ccircle cx='50' cy='80' r='5' fill='%23d4af37'/%3E%3C/svg%3E");
}

.card-1 {
    transform: rotate(-12deg) translateX(-20px);
    z-index: 1;
}

.card-2 {
    transform: rotate(0deg);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.card-3 {
    transform: rotate(12deg) translateX(20px);
    z-index: 1;
}

.mystic-card-stack:hover .card-1 {
    transform: rotate(-22deg) translateX(-50px) translateY(-10px);
}

.mystic-card-stack:hover .card-2 {
    transform: translateY(-20px) scale(1.05);
}

.mystic-card-stack:hover .card-3 {
    transform: rotate(22deg) translateX(50px) translateY(-10px);
}

/* 6.5. NEDEN BİZ BÖLÜMÜ */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(6, 3, 13, 0) 0%, rgba(20, 10, 45, 0.15) 50%, rgba(6, 3, 13, 0) 100%);
    position: relative;
}

.why-us-image-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-glass-active);
    box-shadow: var(--shadow-purple), 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
    background-color: var(--bg-card);
}

.why-us-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.why-us-image-container:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.35), var(--shadow-purple);
    transform: translateY(-5px);
}

.why-us-image-container:hover .why-us-img {
    transform: scale(1.02);
}

/* 7. TAROT OYUNU SECTION */
.tarot-game-section {
    padding: 100px 0;
    position: relative;
}

.tarot-board {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    perspective: 1000px;
    flex-wrap: wrap;
}

.tarot-card-wrapper {
    width: 220px;
    height: 360px;
    cursor: pointer;
}

.tarot-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.tarot-card-wrapper.flipped .tarot-card-inner {
    transform: rotateY(180deg);
}

.tarot-card-front,
.tarot-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-purple);
    overflow: hidden;
}

/* Kartın Arkası */
.tarot-card-front {
    background-color: var(--bg-cosmic);
    background-image: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(6, 3, 13, 0) 70%);
}

.card-back-pattern {
    width: 100%;
    height: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 160' fill='none' stroke='%23d4af37' stroke-width='0.75'%3E%3Crect x='6' y='6' width='88' height='148' rx='10'/%3E%3Crect x='12' y='12' width='76' height='136' rx='6' stroke-dasharray='2,2'/%3E%3Ccircle cx='50' cy='80' r='20'/%3E%3Ccircle cx='50' cy='80' r='30'/%3E%3Cpath d='M50,12 L50,148 M12,80 L88,80'/%3E%3Cpath d='M23,38 L77,122 M23,122 L77,38'/%3E%3C/svg%3E");
}

.card-back-inner {
    color: var(--color-gold);
    font-size: 2.2rem;
    text-shadow: var(--shadow-gold);
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.9);
    }
}

/* Kartın Önü (Açılan Taraf) */
.tarot-card-back {
    background: linear-gradient(135deg, rgba(20, 10, 45, 0.95) 0%, rgba(8, 4, 20, 0.98) 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 2px solid var(--color-gold-glow);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.card-front-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.card-name {
    font-family: var(--font-headings);
    color: var(--color-gold-glow);
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    width: 100%;
}

.card-short-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.btn-card-action {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--color-gold);
    padding: 10px 18px;
    font-size: 0.8rem;
    border-radius: 20px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
}

.btn-card-action:hover {
    background: var(--color-gold);
    color: var(--text-dark);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.game-reset-container {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.game-reset-container.show {
    opacity: 1;
    transform: translateY(0);
}

/* 8. FALCILAR (READERS) SECTION */
.readers-section {
    padding: 100px 0;
}

.readers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reader-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.reader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-magenta));
    opacity: 0;
    transition: var(--transition-smooth);
}

.reader-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-purple);
}

.reader-card:hover::before {
    opacity: 1;
}

.reader-avatar-container {
    position: relative;
    margin-bottom: 20px;
}

.mystic-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.avatar-melisa {
    background: radial-gradient(circle, #4a154b 0%, #120024 100%);
    color: #ffd700;
}

.avatar-destan {
    background: radial-gradient(circle, #0f2042 0%, #030814 100%);
    color: #00f0ff;
}

.avatar-elif {
    background: radial-gradient(circle, #3d0c2e 0%, #12020e 100%);
    color: #bd00ff;
}

.avatar-star {
    animation: sealSpin 20s linear infinite;
}

.status-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #25d366;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    border: 2px solid #06030d;
}

.status-badge.online::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 12px;
    border: 1px solid #25d366;
    animation: badgePulse 1.8s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.reader-info h3 {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.reader-specialties {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reader-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
    height: 75px;
    overflow: hidden;
}

.rating {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.rating span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-left: 6px;
}

.btn-whatsapp-reader {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    width: 100%;
    border-radius: 30px;
    padding: 12px 20px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-reader::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946C.06 5.348 5.397.01 12.008.01c3.202.001 6.212 1.246 8.477 3.514 2.266 2.268 3.507 5.28 3.505 8.484-.004 6.657-5.34 11.997-11.953 11.997-2.005-.001-3.973-.502-5.724-1.455L0 24zm6.59-4.846c1.665.989 3.3 1.489 5.358 1.49 5.348 0 9.7-4.35 9.702-9.699.002-2.592-1.007-5.029-2.84-6.865C17.034 2.24 14.6 1.23 12.007 1.23 6.657 1.23 2.308 5.58 2.306 10.93c0 2.115.56 4.184 1.62 5.955L2.945 20.9l4.135-1.086c-1.248.88-1.432.738.432 1.34z'/%3E%3C/svg%3E");
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

.btn-whatsapp-reader:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* 9. NASIL ÇALIŞIR SECTION */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(6, 3, 13, 0) 0%, rgba(20, 10, 45, 0.2) 50%, rgba(6, 3, 13, 0) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-color: var(--border-glass-active);
    background: var(--bg-card);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, #8a2be2 100%);
    color: var(--text-primary);
    font-family: var(--font-headings);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: var(--shadow-gold);
}

.step-card h3 {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-gold-glow);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

/* 10. YORUMLAR (TESTIMONIALS) SECTION */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-text::before {
    content: '“';
    font-family: var(--font-headings);
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8a2be2 0%, #bd00ff 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-user h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-user span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* 11. SIKÇA SORULAN SORULAR (FAQ) */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(6, 3, 13, 0) 0%, rgba(12, 8, 34, 0.3) 100%);
}

.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-toggle {
    font-size: 1.4rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 28px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Aktif Durum */
.faq-item.active {
    background: var(--bg-card);
    border-color: var(--border-glass-active);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    /* yeterli bir yükseklik */
    padding-bottom: 24px;
}

/* 12. FOOTER */
.main-footer {
    background-color: #030207;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
    object-fit: cover;
}

.footer-brand h3 {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.disclaimer {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 900px;
    margin: 0 auto 20px auto;
    line-height: 1.5;
}

.footer-bottom p:last-child {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* 13. SABİT WHATSAPP BUTONU */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 99;
    transition: var(--transition-smooth);
}

.whatsapp-floating-btn svg {
    width: 30px;
    height: 30px;
}

.whatsapp-floating-btn::after,
.whatsapp-floating-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.4;
    z-index: -1;
}

.whatsapp-floating-btn::after {
    animation: pulseFloating 2s infinite;
}

.whatsapp-floating-btn::before {
    animation: pulseFloating 2s infinite 0.6s;
}

@keyframes pulseFloating {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

/* 14. RESPONSIVE TASARIM (MOBİL UYUMLULUK) */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-visual {
        order: -1;
        margin-bottom: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .main-header {
        padding: 5px 0;
    }

    .logo-text {
        font-size: clamp(0.85rem, 3.8vw, 1.1rem);
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .header-logo-img {
        height: 36px;
        width: 36px;
        margin-right: 8px;
    }

    .btn-nav-whatsapp {
        padding: 8px 14px;
        font-size: clamp(0.75rem, 3vw, 0.85rem);
        white-space: nowrap;
    }

    .main-nav {
        display: none;
        /* Basitlik adına mobilde gizle veya hamburger menü yapılabilir, ancak tek sayfa reklam sitesi olduğu için direkt CTA odaklı olması yeterlidir */
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .tarot-board {
        gap: 20px;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-floating-btn svg {
        width: 24px;
        height: 24px;
    }

    .instagram-floating-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .instagram-floating-btn svg {
        width: 22px;
        height: 22px;
    }

    @media (max-width: 480px) {
        .logo-text {
            font-size: 0.96rem;
            letter-spacing: 0.5px;
        }

        .header-logo-img {
            margin-right: 6px;
        }

        .btn-nav-whatsapp {
            padding: 6px 12px;
            font-size: 0.72rem;
        }
    }
}

/* 15. SABİT INSTAGRAM BUTONU */
.instagram-floating-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
    z-index: 99;
    transition: var(--transition-smooth);
}

.instagram-floating-btn svg {
    width: 28px;
    height: 28px;
}

.instagram-floating-btn::after,
.instagram-floating-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #dc2743;
    opacity: 0.4;
    z-index: -1;
}

.instagram-floating-btn::after {
    animation: pulseFloating 2s infinite;
}

.instagram-floating-btn::before {
    animation: pulseFloating 2s infinite 0.6s;
}

.instagram-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.6);
}