/* ========================================================
   Ramazanvakti.org — Premium Dark Theme Design System
   ======================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Amiri:wght@400;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors */
    --bg-primary: #060b18;
    --bg-secondary: #0c1224;
    --bg-card: rgba(15, 23, 50, 0.65);
    --bg-card-hover: rgba(20, 30, 65, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);

    --gold-primary: #d4a24e;
    --gold-light: #f5d08a;
    --gold-dark: #a07830;
    --gold-glow: rgba(212, 162, 78, 0.25);

    --accent-teal: #2dd4bf;
    --accent-blue: #60a5fa;
    --accent-purple: #a78bfa;
    --accent-rose: #fb7185;

    --text-primary: #f0f2f8;
    --text-secondary: #8b92a8;
    --text-muted: #5a6178;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212, 162, 78, 0.3);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #060b18 0%, #0e1638 40%, #1a1040 70%, #0d0c20 100%);
    --gradient-gold: linear-gradient(135deg, #d4a24e, #f5d08a);
    --gradient-card: linear-gradient(145deg, rgba(15, 23, 50, 0.7), rgba(10, 16, 38, 0.9));
    --gradient-countdown: linear-gradient(180deg, rgba(212, 162, 78, 0.1) 0%, rgba(212, 162, 78, 0) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-arabic: 'Amiri', serif;

    /* Spacing */
    --container-max: 1200px;
    --section-gap: 80px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Shadows */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(212, 162, 78, 0.15);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* ---------- Background Decoration ---------- */
.bg-stars {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-stars::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 30% 60%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 50% 10%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 70% 40%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(1px 1px at 90% 80%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1.5px 1.5px at 15% 85%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 45% 45%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 80% 15%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 65% 75%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1px 1px at 25% 35%, rgba(255, 255, 255, 0.25), transparent);
    animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- HEADER / NAVIGATION ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}

.header.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 11, 24, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: -1;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    filter: drop-shadow(0 0 8px rgba(212, 162, 78, 0.5));
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s;
    border-radius: 1px;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile hamburger — animated lines */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--gold-primary);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--gold-primary);
}

/* Mobile menu overlay (dark backdrop) */
.mobile-menu-overlay {
    display: none;
}

/* Nav icons — hidden on desktop */
.nav-icon {
    display: none;
}

/* Nav menu brand — hidden on desktop */
.nav-menu-brand {
    display: none;
}

@media (max-width: 768px) {
    :root {
        --section-gap: 56px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Overlay */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.75);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Nav panel — slides from right */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        background: #0a1028;
        background: linear-gradient(180deg, #0a1028 0%, #0e1638 50%, #0d0c20 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 36px 40px;
        gap: 0;
        z-index: 9999;
        list-style: none;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border-gold);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Nav items — staggered slide in */
    .nav-item {
        width: 100%;
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-links.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-secondary);
        padding: 18px 0;
        border-bottom: 1px solid var(--border-subtle);
        width: 100%;
        position: relative;
        transition: color 0.3s, padding-left 0.3s;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: var(--gradient-gold);
        border-radius: 2px;
        transition: height 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a:active {
        color: var(--gold-light);
        padding-left: 14px;
    }

    .nav-links a:hover::before,
    .nav-links a:active::before {
        height: 60%;
    }

    /* Show icons on mobile */
    .nav-icon {
        display: inline-block;
        font-size: 1.3rem;
        width: 32px;
        text-align: center;
        filter: drop-shadow(0 0 4px rgba(212, 162, 78, 0.3));
    }

    /* Decorative brand at bottom of menu */
    .nav-menu-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: auto;
        padding-top: 32px;
        font-size: 0.8rem;
        color: var(--text-muted);
        font-weight: 500;
        letter-spacing: 0.05em;
        opacity: 0;
        transition: opacity 0.5s ease 0.4s;
    }

    .nav-links.active .nav-menu-brand {
        opacity: 0.6;
    }

    .nav-menu-moon {
        font-size: 1.4rem;
        filter: drop-shadow(0 0 8px rgba(212, 162, 78, 0.5));
        animation: float 6s ease-in-out infinite;
    }
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 162, 78, 0.04) 0%, transparent 50%);
    animation: heroGlow 12s ease-in-out infinite;
}

@keyframes heroGlow {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(212, 162, 78, 0.1);
    border: 1px solid rgba(212, 162, 78, 0.2);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-arabic {
    font-family: var(--font-arabic);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 16px;
    opacity: 0.8;
    animation: fadeInDown 0.8s ease-out 0.1s both;
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-title .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

/* City Selector */
.city-selector-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    animation: fadeInDown 0.8s ease-out 0.4s both;
}

.city-selector {
    position: relative;
}

.city-selector select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(15, 23, 50, 0.8);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 48px 14px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    min-width: 220px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.city-selector select:hover,
.city-selector select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px var(--gold-glow);
    outline: none;
}

.city-selector select option {
    background: #0c1224;
    color: var(--text-primary);
    padding: 8px;
}

.city-selector::after {
    content: '▾';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 1.1rem;
    pointer-events: none;
}

.location-btn {
    background: rgba(15, 23, 50, 0.8);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.location-btn:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px var(--gold-glow);
    background: rgba(212, 162, 78, 0.1);
}

/* ---------- COUNTDOWN ---------- */
.countdown-section {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.countdown-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.countdown-target-time {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.countdown-item {
    background: var(--gradient-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    min-width: 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.countdown-value {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.countdown-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Countdown status badge */
.countdown-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.countdown-status.iftar {
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    color: var(--accent-teal);
}

.countdown-status.sahur {
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
    color: var(--accent-purple);
}

/* ---------- DAILY TIMES SECTION ---------- */
.section {
    position: relative;
    z-index: 1;
    padding: var(--section-gap) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-overline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Prayer time cards */
.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.time-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.time-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.time-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.time-card:hover::before {
    opacity: 1;
}

.time-card.active {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-glow);
}

.time-card.active::before {
    opacity: 1;
}

.time-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.time-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.time-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.time-card.active .time-value {
    color: var(--gold-primary);
}

/* ---------- IMSAKIYE TABLE ---------- */
.imsakiye-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.imsakiye-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.imsakiye-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.imsakiye-table thead {
    background: rgba(212, 162, 78, 0.08);
}

.imsakiye-table th {
    padding: 16px 14px;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-primary);
    border-bottom: 1px solid var(--border-gold);
    white-space: nowrap;
}

.imsakiye-table td {
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-weight: 500;
    transition: background 0.2s;
}

.imsakiye-table tbody tr {
    transition: background 0.2s;
}

.imsakiye-table tbody tr:hover {
    background: rgba(212, 162, 78, 0.04);
}

.imsakiye-table tbody tr.today {
    background: rgba(212, 162, 78, 0.08);
    border-left: 3px solid var(--gold-primary);
}

.imsakiye-table tbody tr.today td {
    color: var(--gold-light);
    font-weight: 600;
}

.imsakiye-table tbody tr.past td {
    color: var(--text-muted);
}

/* Highlight Imsak (Sahur) & Aksam (Iftar) columns */
/* Column 3: İmsak */
.imsakiye-table th:nth-child(3),
.imsakiye-table td:nth-child(3) {
    background: rgba(167, 139, 250, 0.08);
    /* Soft Purple */
    color: var(--accent-purple);
    font-weight: 700;
}

/* Column 7: Akşam */
.imsakiye-table th:nth-child(7),
.imsakiye-table td:nth-child(7) {
    background: rgba(45, 212, 191, 0.08);
    /* Soft Teal */
    color: var(--accent-teal);
    font-weight: 700;
}

.imsakiye-table tbody tr:hover td:nth-child(3) {
    background: rgba(167, 139, 250, 0.15);
}

.imsakiye-table tbody tr:hover td:nth-child(7) {
    background: rgba(45, 212, 191, 0.15);
}

.day-name {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---------- INFO CARDS SECTION ---------- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.info-card:nth-child(1)::after {
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
}

.info-card:nth-child(2)::after {
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
}

.info-card:nth-child(3)::after {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-rose));
}

.info-card:nth-child(4)::after {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
}

.info-card-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}

.info-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.info-card-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- RAMADAN PROGRESS ---------- */
.progress-bar-wrapper {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.progress-day {
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 4px;
    transition: width 1s ease-out;
    box-shadow: 0 0 12px var(--gold-glow);
}

/* ---------- DATE DISPLAY ---------- */
.date-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    animation: fadeInDown 0.8s ease-out 0.35s both;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.date-item .date-icon {
    font-size: 1rem;
    opacity: 0.7;
}

.date-item .date-value {
    font-weight: 500;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 48px 0 28px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--gold-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- MOSQUE DECORATION (SVG) ---------- */
.mosque-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    opacity: 0.04;
    pointer-events: none;
}

/* ---------- CRESCENT MOON DECORATION ---------- */
.crescent {
    position: absolute;
    top: 15%;
    right: 10%;
    font-size: 5rem;
    opacity: 0.06;
    color: var(--gold-primary);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .header {
        background: rgba(6, 11, 24, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .hero {
        padding: 150px 16px 40px;
        min-height: auto;
    }

    .hero-arabic {
        font-size: 1.4rem;
    }

    .countdown-grid {
        gap: 8px;
    }

    .countdown-item {
        padding: 14px 12px;
        min-width: 68px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .city-selector select {
        min-width: 180px;
        font-size: 0.9rem;
        padding: 12px 40px 12px 16px;
    }

    .times-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .time-card {
        padding: 18px 10px;
    }

    .time-value {
        font-size: 1.35rem;
    }

    .time-icon {
        font-size: 1.5rem;
    }

    .imsakiye-table th,
    .imsakiye-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .times-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .date-display {
        flex-direction: column;
        gap: 8px;
    }
}

/* ---------- DAILY SIDEBAR (Floating on Hero Right) ---------- */
.daily-sidebar {
    position: absolute;
    top: 100px;
    right: 24px;
    width: 280px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.daily-card {
    background: rgba(10, 16, 38, 0.85);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.daily-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 4px 20px rgba(212, 162, 78, 0.12);
}

.daily-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.daily-card-ayet::before {
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
}

.daily-card-menu::before {
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
}

.daily-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.daily-card-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 4px rgba(212, 162, 78, 0.4));
}

.daily-card-menu .daily-card-icon {
    filter: drop-shadow(0 0 4px rgba(45, 212, 191, 0.4));
}

.daily-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Ayet / Hadis Quote */
.daily-quote {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0 0 10px 0;
    padding: 0;
    border: none;
    font-style: italic;
    opacity: 0.9;
}

.daily-source {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.daily-message-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

.daily-message {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
}

/* İftar Menüsü Listesi */
.daily-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.daily-menu-list li {
    position: relative;
    padding: 10px 0 10px 20px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 1px solid var(--border-subtle);
    transition: color 0.3s;
}

.daily-menu-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.daily-menu-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow: 0 0 6px rgba(212, 162, 78, 0.4);
}

.daily-menu-list li:hover {
    color: var(--text-primary);
}

/* Responsive — hide sidebar on smaller screens */
@media (max-width: 1100px) {
    .daily-sidebar {
        width: 240px;
        right: 16px;
        top: 90px;
    }

    .daily-card {
        padding: 14px 12px;
    }

    .daily-quote {
        font-size: 0.75rem;
    }

    .daily-card-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .daily-sidebar {
        position: static;
        width: 100%;
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 24px 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        animation: fadeInUp 0.7s ease-out;
    }

    .daily-card {
        padding: 20px 16px;
    }

    .daily-quote {
        font-size: 0.82rem;
    }

    .daily-card-title {
        font-size: 0.85rem;
    }

    .daily-menu-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 560px) {
    .daily-sidebar {
        grid-template-columns: 1fr;
        padding: 0 16px 32px;
    }
}

/* ---------- SHARE BUTTONS ---------- */
.share-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.share-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.15);
}

.share-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.share-twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: #fff;
}

.share-copy:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #fff;
}

.share-copy.copied {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

/* ---------- CALCULATOR CARDS ---------- */
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.calc-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s;
}

.calc-card:hover {
    border-color: var(--border-gold);
}

.calc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

#zekatCalc::before {
    background: var(--gradient-gold);
}

#fitreCalc::before {
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-blue));
}

.calc-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.calc-icon {
    font-size: 2rem;
}

.calc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.calc-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.calc-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    -webkit-appearance: none;
}

.calc-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 162, 78, 0.15);
}

.calc-input::placeholder {
    color: var(--text-muted);
}

.calc-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.calc-select option {
    background: #0e1638;
    color: var(--text-primary);
}

.calc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--gradient-gold);
    color: #0a0f2c;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.calc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 162, 78, 0.35);
}

.calc-btn:active {
    transform: translateY(0);
}

.calc-btn-teal {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
    color: #fff;
}

.calc-btn-teal:hover {
    box-shadow: 0 6px 24px rgba(45, 212, 191, 0.35);
}

/* ---------- DUA & ZIKIR KÖŞESİ ---------- */
.prayer-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.prayer-tab {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.prayer-tab.active {
    background: var(--gradient-gold);
    color: #0a0f2c;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 162, 78, 0.3);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

/* Prayer List (Accordion) */
.prayer-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.prayer-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.prayer-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.prayer-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.prayer-toggle {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: transform 0.3s;
}

.prayer-item.open .prayer-toggle {
    transform: rotate(45deg);
}

.prayer-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.prayer-item.open .prayer-body {
    padding: 20px;
    max-height: 500px;
}

/* Typography for Prayers */
.arabic-text {
    font-family: 'Amiri', serif;
    font-size: 1.6rem;
    line-height: 2;
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 16px;
    direction: rtl;
}

.latin-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.meaning-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

/* Zikirmatik UI */
.zikir-container {
    max-width: 400px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 40px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.zikir-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.zikir-display {
    background: #000;
    color: var(--accent-teal);
    font-family: 'Courier New', monospace;
    font-size: 4rem;
    font-weight: 700;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid #222;
    box-shadow: inset 0 0 20px rgba(45, 212, 191, 0.1);
    text-shadow: 0 0 10px rgba(45, 212, 191, 0.5);
    display: inline-block;
    min-width: 200px;
}

.zikir-btn {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: none;
    background: radial-gradient(circle at 30% 30%, #444, #1a1a1a);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.5),
        inset 0 5px 10px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    margin: 0 auto 30px;
    transition: transform 0.1s;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.zikir-btn:active {
    transform: scale(0.95);
    box-shadow:
        0 5px 10px rgba(0, 0, 0, 0.5),
        inset 0 5px 10px rgba(0, 0, 0, 0.5);
}

.zikir-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(212, 162, 78, 0.5);
    opacity: 0;
    pointer-events: none;
}

.zikir-btn:active .zikir-ripple {
    animation: ripple 0.4s ease-out;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.zikir-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.zikir-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zikir-control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.zikir-control-btn.active {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background: rgba(212, 162, 78, 0.1);
}

.zikir-target {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.zikir-target input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 6px 10px;
    border-radius: 8px;
    width: 60px;
    text-align: center;
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notification Button Style */
.nav-notify-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-notify-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-notify-btn.active {
    background: rgba(212, 162, 78, 0.15);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 162, 78, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 162, 78, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 162, 78, 0);
    }
}

@media (max-width: 900px) {
    .nav-notify-btn {
        width: 100%;
        justify-content: flex-start;
        background: transparent;
        border: none;
        padding: 0;
        color: var(--text-primary);
        font-size: 1.1rem;
        font-weight: 500;
        margin-top: 8px;
    }

    .nav-notify-btn:hover {
        background: transparent;
        transform: none;
        color: var(--gold-primary);
    }

    .nav-notify-btn.active {
        background: transparent;
        animation: none;
        color: var(--gold-primary);
    }
}

.calc-btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.calc-btn:hover .calc-btn-icon {
    transform: translateX(4px);
}

/* Calculator results */
.calc-result {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    animation: fadeInUp 0.5s ease;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.calc-result-row:last-of-type {
    border-bottom: none;
}

.calc-result-value {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.calc-result-highlight {
    background: rgba(212, 162, 78, 0.08);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-top: 8px;
    border-bottom: none;
}

.calc-gold {
    color: var(--gold-primary);
    font-size: 1.25rem;
}

.calc-result-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 12px;
    line-height: 1.5;
}

/* Fitre prices info */
.fitre-prices-info {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.fitre-prices-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fitre-prices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.fitre-price-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

.fitre-price-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.fitre-price-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-teal);
}

/* Responsive calculators */
@media (max-width: 768px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }

    .calc-card {
        padding: 24px 20px;
    }

    .share-buttons {
        justify-content: flex-start;
    }
}

/* ---------- UTILITY ---------- */
.text-gold {
    color: var(--gold-primary);
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

/* ---------- ESMA-ÜL HÜSNA CARD ---------- */
.esma-card {
    background: linear-gradient(135deg, rgba(6, 11, 24, 0.95), rgba(15, 23, 50, 0.95));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.esma-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.esma-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(212, 162, 78, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.esma-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.esma-icon {
    font-size: 1.5rem;
}

.esma-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.esma-content {
    position: relative;
    z-index: 1;
}

.esma-arabic {
    font-family: var(--font-arabic);
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(212, 162, 78, 0.3);
    animation: float 6s ease-in-out infinite;
}

.esma-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.esma-meaning {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .esma-card {
        padding: 24px;
        margin-bottom: 32px;
    }

    .esma-arabic {
        font-size: 3rem;
    }

    .esma-name {
        font-size: 1.5rem;
    }
}

.mb-4 {
    margin-bottom: 16px;
}

.mt-8 {
    margin-top: 32px;
}