/* Syrian Manifesto Website - Styles */
/* Color Palette inspired by Syrian Flag & Government */

:root {
    /* New Syrian Flag Colors (2025) - Green, White, Black with Red Stars */
    --syria-green: #007A3D;
    --syria-dark-green: #005C2E;
    --syria-red: #CE1126;
    /* Red stars */
    --syria-white: #FFFFFF;
    --syria-black: #000000;

    /* Accent Colors */
    --gold: #D4AF37;
    --gold-light: #E8C84B;
    --gold-dark: #B8960C;

    /* UI Colors - Formal Governmental Theme */
    --bg-dark: #1a1d24;
    --bg-card: rgba(40, 45, 55, 0.6);
    --bg-card-hover: rgba(50, 58, 70, 0.7);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);

    /* Glassmorphism */
    --glass-bg: rgba(35, 40, 50, 0.4);
    --glass-border: rgba(201, 162, 39, 0.25);

    /* Shadows */
    --shadow-gold: 0 0 25px rgba(201, 162, 39, 0.25);
    --shadow-dark: 0 0 40px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Amiri', 'Cairo', 'Noto Sans Arabic', serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    direction: rtl;
    text-align: right;
    line-height: 1.8;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top right, rgba(50, 55, 70, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(40, 45, 60, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Particle Animation Container */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-up 8s infinite;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Amiri', serif;
    font-weight: 700;
    line-height: 1.4;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, var(--bg-dark) 100%);
    pointer-events: none;
}

.eagle-icon {
    width: 180px;
    height: 180px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 25px rgba(201, 162, 39, 0.6));
    animation: pulse-glow 3s ease-in-out infinite;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

@keyframes pulse-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8));
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero-intro {
    max-width: 800px;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--gold);
    border-radius: 3px;
    animation: scroll-down 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Section Titles */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 0;
}

/* Statements Section */
.statements-section {
    padding: 6rem 0;
}

.statements-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Statement Card */
.statement-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.statement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--syria-green), var(--gold), var(--syria-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.statement-card:hover::before,
.statement-card.expanded::before {
    transform: scaleX(1);
}

.statement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
    background: var(--bg-card-hover);
}

.statement-card.expanded {
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.statement-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--syria-green), var(--syria-dark-green));
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.statement-title {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.statement-preview {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.statement-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    opacity: 0;
}

.statement-card.expanded .statement-details {
    max-height: 2000px;
    padding-top: 1.5rem;
    opacity: 1;
}

.statement-card.expanded .statement-preview {
    display: none;
}

.statement-full-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.statement-reflection {
    /* background: rgba(206, 17, 38, 0.1); */
    background: rgba(210, 210, 190, 1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-right: 4px solid var(--syria-red);
}

.statement-reflection h4 {
    color: var(--syria-red);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.statement-reflection p {
    color: rgba(40, 40, 40, 1);
    font-size: 1rem;
    line-height: 1.8;
}

.statement-islamic {
    background: rgba(0, 104, 71, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    border-right: 4px solid var(--gold);
    /* border-right: 4px solid var(--syria-red); */
}

.statement-islamic h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.statement-islamic p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
}

.expand-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.expand-indicator svg {
    transition: transform 0.3s ease;
}

.statement-card.expanded .expand-indicator svg {
    transform: rotate(180deg);
}

/* Commitment Section */
.commitment-section {
    padding: 6rem 0;
    text-align: center;
}

.commitment-box {
    background: linear-gradient(135deg, rgba(0, 104, 71, 0.3), rgba(0, 77, 53, 0.3));
    backdrop-filter: blur(15px);
    border: 2px solid var(--gold);
    border-radius: 30px;
    padding: 4rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-gold);
}

.commitment-text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    line-height: 2;
    margin-bottom: 2rem;
}

.commitment-text .highlight {
    color: var(--gold);
    font-weight: bold;
}

.signature-text {
    font-size: 1.4rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 3rem;
    padding: 2rem;
    border: 1px dashed var(--gold);
    border-radius: 15px;
    background: rgba(212, 175, 55, 0.05);
}

.counter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.counter-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.counter-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: bold;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    font-family: 'Cairo', sans-serif;
    animation: counter-glow 2s ease-in-out infinite;
}

@keyframes counter-glow {

    0%,
    100% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }

    50% {
        text-shadow: 0 0 50px rgba(212, 175, 55, 0.8);
    }
}

.counter-suffix {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.commit-btn {
    background: linear-gradient(135deg, var(--syria-green), var(--syria-dark-green));
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.4rem;
    font-family: 'Amiri', serif;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 104, 71, 0.4);
    position: relative;
    overflow: hidden;
}

.commit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.commit-btn:hover::before {
    left: 100%;
}

.commit-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--syria-dark-green);
}

.commit-btn:disabled {
    background: rgba(100, 100, 100, 0.3);
    border-color: rgba(100, 100, 100, 0.5);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    transform: none;
}

.commit-btn:disabled:hover::before {
    left: -100%;
}

/* Signature Button - Enhanced Styling */
.signature-btn {
    font-size: 1.6rem;
    padding: 1.5rem 3.5rem;
    font-style: italic;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0 auto 2.5rem auto;
    box-shadow:
        0 8px 30px rgba(212, 175, 55, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.signature-btn .btn-icon {
    font-size: 1.8rem;
    animation: point-bounce 1.5s ease-in-out infinite;
}

@keyframes point-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.signature-btn:hover {
    transform: scale(1.08);
    box-shadow:
        0 12px 40px rgba(212, 175, 55, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.signature-btn:hover .btn-icon {
    animation: none;
}

.commit-success {
    display: none;
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    animation: fade-in 0.5s ease;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Guestbook Section */
.guestbook-section {
    padding: 6rem 0;
}

.guestbook-container {
    max-width: 800px;
    margin: 0 auto;
}

.guestbook-form {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    direction: rtl;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--syria-green), var(--syria-dark-green));
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.2rem;
    font-family: 'Amiri', serif;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--syria-dark-green);
}

.guestbook-entries {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guestbook-entry {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    animation: slide-in 0.3s ease;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.entry-name {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: bold;
}

.entry-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.entry-message {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(0, 104, 71, 0.1));
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
}

.contact-title {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer */
.footer {
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Right Side - Authors & Email */
.footer-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-authors {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.footer-email {
    color: var(--gold);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.footer-contact {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Social Media Links */
.footer-socials {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--gold);
    text-decoration: none;
    background: rgba(10, 20, 15, 0.6);
    border: 2px solid var(--gold);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.social-link::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold), transparent, var(--gold-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: rotate-glow 3s linear infinite;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.social-link:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--syria-dark-green);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    border-color: transparent;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.social-link span {
    display: none;
}

/* Center - Title & Motto */
.footer-center {
    text-align: center;
}

.footer-title {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.footer-version {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.footer-motto {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Left Side - Legal */
.footer-left {
    text-align: left;
}

.footer-left p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.2rem 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-right,
    .footer-center,
    .footer-left {
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .eagle-icon {
        width: 100px;
        height: 100px;
    }

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

    .statement-card {
        padding: 1.5rem;
    }

    .commitment-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .statement-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .statement-title {
        font-size: 1.2rem;
    }

    .commit-btn {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
}

/* Quran/Hadith highlighting */
.quran-text {
    color: var(--gold);
    font-family: 'Amiri', serif;
    font-size: 1.1em;
}

/* Flag stripe decoration - New 2025 Syrian Flag (Green-White-Black) */
.flag-stripe {
    height: 6px;
    background: linear-gradient(to left,
            var(--syria-green) 0%,
            var(--syria-green) 33%,
            var(--syria-white) 33%,
            var(--syria-white) 66%,
            var(--syria-black) 66%,
            var(--syria-black) 100%);
    margin: 2rem 0;
}

/* Floating PDF Download Button */
.floating-pdf-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    padding: 0.5rem 1rem;
    background: rgba(30, 35, 40, 0.95);
    border: 2.5px solid var(--gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.85rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.floating-pdf-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--syria-dark-green);
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    border-color: var(--gold-light);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }

    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 1);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .floating-pdf-btn {
        font-size: 0.9rem;
        padding: 0.65rem 1.3rem;
        bottom: 20px;
        left: 20px;
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* ── STATEMENT BAND CSS ── */
.statement {
    position: relative;
    /* full-bleed: break out of any max-width container */
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    aspect-ratio: 1528 / 1029;
    max-height: 78vh;
    min-height: 340px;
    overflow: hidden;
}

.statement-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.statement::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(8, 10, 15, .82) 0%, rgba(8, 10, 15, .32) 26%, transparent 50%),
        linear-gradient(to left, rgba(8, 10, 15, .3) 0%, transparent 32%);
}

.statement-caption {
    position: absolute;
    top: clamp(24px, 8vw, 64px);
    right: 0;
    left: 0;
    z-index: 2;
    padding: 0 clamp(24px, 5vw, 52px);
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 20px);
    align-items: center;
}

.svc-line {
    font-family: 'Amiri', serif;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .6);
    margin: 0;
}

/* Line 1 — اللَّهُ — centered, slightly bigger */
.svc-god {
    font-size: clamp(28px, 4.2vw, 54px);
    align-self: center;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .7);
}

/* Line 2 — centered */
.svc-believers {
    font-size: clamp(18px, 2.8vw, 38px);
    align-self: center;
}

/* Line 3 */
.svc-dark {
    font-size: clamp(18px, 2.8vw, 38px);
    align-self: center;
    text-align: center;
}

/* الظُّلُمَاتِ — dark charcoal to echo the ruins */
.svc-zulumaat {
    color: #1c140a;
    text-shadow: 0 0 10px rgba(255, 255, 255, .55), 0 0 20px rgba(255, 255, 255, .3);
}

/* Line 4 */
.svc-light {
    font-size: clamp(18px, 2.8vw, 38px);
    align-self: center;
    text-align: center;
}

/* النُّورِ — glowing gold */
.svc-noor {
    color: var(--gold);
    text-shadow: 0 0 18px rgba(212, 175, 55, .85), 0 0 36px rgba(212, 175, 55, .4), 0 2px 12px rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .statement {
        max-height: none;
    }

    .statement-caption {
        top: clamp(16px, 6vw, 28px);
        padding: 0 clamp(16px, 4vw, 24px);
        gap: clamp(8px, 1.5vw, 12px);
    }

    .statement-verse-split {
        flex-direction: column;
        gap: clamp(6px, 1vw, 10px);
    }

    .statement-verse-left,
    .statement-verse-right {
        text-align: center;
    }
}