/* =========================================
   Kashmir Hospitality - Autumn Theme
   ========================================= */
:root {
    --primary: #8B4513;
    --primary-light: #A0522D;
    --primary-dark: #6B3410;
    --secondary: #D4A017;
    --accent: #C75B12;
    --autumn-red: #B22222;
    --autumn-orange: #E8740C;
    --autumn-gold: #DAA520;
    --warm-cream: #FFF8F0;
    --warm-beige: #F5E6D3;
    --text-main: #3B2F2F;
    --text-muted: #7A6B5D;
    --text-light: #FFF8F0;
    --bg-main: #FFFAF5;
    --bg-light: #FFF3E8;
    --bg-dark: #2C1810;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --container-width: 1200px;
    --shadow-sm: 0 1px 3px rgba(139,69,19,0.08);
    --shadow-md: 0 4px 12px rgba(139,69,19,0.12);
    --shadow-lg: 0 12px 24px rgba(139,69,19,0.15);
    --shadow-hover: 0 20px 40px rgba(139,69,19,0.18);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-main); background-color: var(--bg-main); line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; color: var(--text-main); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }

/* ---- Decorative Leaf Divider ---- */
.leaf-divider { text-align: center; padding: 1rem 0; font-size: 1.5rem; color: var(--autumn-orange); letter-spacing: 1rem; opacity: 0.5; }

/* ---- Section Headers ---- */
.section-subtitle { display: inline-block; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; font-weight: 600; color: var(--accent); margin-bottom: 0.75rem; position: relative; }
.section-subtitle::before, .section-subtitle::after { content: '—'; margin: 0 0.5rem; color: var(--autumn-gold); }
.section-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .section-title { font-size: 3.2rem; } }
.section-desc { color: var(--text-muted); font-size: 1.1rem; max-width: 620px; margin: 0 auto 3rem; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.75rem; border-radius: var(--radius-md); font-family: var(--font-sans); font-weight: 500; font-size: 0.95rem; cursor: pointer; border: 2px solid transparent; transition: var(--transition); letter-spacing: 0.3px; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; border-color: transparent; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(139,69,19,0.3); filter: brightness(1.1); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-white-outline { background: transparent; border-color: rgba(255,255,255,0.7); color: white; }
.btn-white-outline:hover { background: white; color: var(--text-main); }

/* =========================================
   Navigation
   ========================================= */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.25rem 0; transition: all 0.4s ease; background: transparent; }
.navbar.scrolled { background: rgba(255,250,245,0.97); backdrop-filter: blur(12px); padding: 0.75rem 0; box-shadow: 0 2px 20px rgba(139,69,19,0.08); }
.nav-container { max-width: var(--container-width); margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: white; }
.navbar.scrolled .logo { color: var(--primary); }
.logo-icon { color: var(--autumn-gold); }
.nav-links { display: none; gap: 2.5rem; }
.nav-links a { color: white; font-weight: 500; font-size: 0.95rem; position: relative; }
.nav-links a.active { color: var(--autumn-gold); }
.navbar.scrolled .nav-links a { color: var(--text-main); }
.navbar.scrolled .nav-links a.active { color: var(--accent); }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--autumn-gold); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-container > .btn { display: none; }
.navbar.scrolled .nav-container > .btn { display: inline-flex; }
.mobile-menu-btn { display: block; background: none; border: none; color: white; cursor: pointer; padding: 0.5rem; }
.navbar.scrolled .mobile-menu-btn { color: var(--text-main); }

/* ---- Page-specific navbar (non-hero pages) ---- */
.navbar.navbar-dark { background: var(--bg-dark); padding: 0.75rem 0; }
.navbar.navbar-dark .logo { color: white; }
.navbar.navbar-dark .nav-links a { color: rgba(255,255,255,0.8); }
.navbar.navbar-dark .nav-links a.active { color: var(--autumn-gold); }
.navbar.navbar-dark .mobile-menu-btn { color: white; }
.navbar.navbar-dark .nav-container > .btn { display: inline-flex; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--bg-main); z-index: 999; padding: 6rem 2rem 2rem; display: flex; flex-direction: column; gap: 1.5rem; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77,0,0.175,1); }
.mobile-menu.active { transform: translateX(0); }
.mobile-link { font-size: 1.4rem; font-family: var(--font-serif); color: var(--text-main); font-weight: 600; border-bottom: 1px solid var(--warm-beige); padding-bottom: 0.75rem; }
@media (min-width: 768px) { .nav-links { display: flex; } .mobile-menu-btn { display: none; } .nav-container > .btn { display: inline-flex; } }

/* =========================================
   Hero Section (Home Page)
   ========================================= */
.hero { position: relative; height: 100vh; min-height: 650px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 2rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(44,24,16,0.55) 0%, rgba(44,24,16,0.25) 40%, rgba(44,24,16,0.65) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 850px; color: white; }
.hero h1 { color: white; font-size: 3rem; margin-bottom: 1.5rem; text-shadow: 0 3px 8px rgba(0,0,0,0.3); }
.hero p { font-size: 1.2rem; margin-bottom: 2.5rem; opacity: 0.92; text-shadow: 0 1px 4px rgba(0,0,0,0.3); max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 640px) { .hero h1 { font-size: 4.5rem; } .hero p { font-size: 1.4rem; } .hero-actions { flex-direction: row; gap: 1.5rem; justify-content: center; } }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; color: white; animation: bounce 2s infinite; }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateY(0) translateX(-50%); } 40% { transform: translateY(-18px) translateX(-50%); } 60% { transform: translateY(-8px) translateX(-50%); } }

/* ---- Stats Bar ---- */
.stats-bar { background: white; padding: 2.5rem 0; position: relative; z-index: 10; box-shadow: var(--shadow-md); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item .stat-number { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--accent); display: block; }
.stat-item .stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.25rem; }

/* =========================================
   Page Hero (internal pages)
   ========================================= */
.page-hero { position: relative; height: 45vh; min-height: 320px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(44,24,16,0.6), rgba(44,24,16,0.75)); }
.page-hero-content { position: relative; z-index: 2; color: white; }
.page-hero-content h1 { color: white; font-size: 3rem; margin-bottom: 0.75rem; }
.page-hero-content p { font-size: 1.15rem; opacity: 0.85; }
.breadcrumb { margin-top: 1rem; font-size: 0.9rem; opacity: 0.7; }
.breadcrumb a { color: var(--autumn-gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* =========================================
   About Section / Page
   ========================================= */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 992px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon { background: linear-gradient(135deg, var(--warm-beige), var(--bg-light)); color: var(--accent); width: 3.25rem; height: 3.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item h3 { font-family: var(--font-sans); font-size: 1.05rem; margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.9rem; margin-bottom: 0; }
.about-image-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img { width: 100%; height: 500px; object-fit: cover; }
.experience-badge { position: absolute; bottom: 1.5rem; right: 1.5rem; background: white; padding: 1.25rem 1.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); display: flex; align-items: center; gap: 0.75rem; }
.experience-badge .number { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--accent); line-height: 1; }
.experience-badge .text { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; line-height: 1.3; }

/* ---- Values Grid (About page) ---- */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { background: white; padding: 2.5rem 2rem; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm); border-top: 3px solid var(--autumn-gold); transition: var(--transition); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card .value-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; width: 4.5rem; height: 4.5rem; margin: 0 auto 1.25rem; background: var(--bg-light); border-radius: 50%; color: var(--accent); }
.value-card h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 0.75rem; }
.value-card p { color: var(--text-muted); font-size: 0.95rem; }

/* =========================================
   Destinations Cards
   ========================================= */
.destination-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .destination-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .destination-grid { grid-template-columns: repeat(3, 1fr); } }
.dest-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); display: flex; flex-direction: column; }
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.dest-card .dest-img { height: 250px; overflow: hidden; position: relative; }
.dest-card .dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover .dest-img img { transform: scale(1.08); }
.dest-price { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.95); color: var(--accent); padding: 0.45rem 1rem; border-radius: 2rem; font-weight: 600; font-size: 0.85rem; box-shadow: var(--shadow-sm); z-index: 2; }
.dest-content { padding: 1.75rem; display: flex; flex-direction: column; flex-grow: 1; }
.dest-meta { display: flex; gap: 1rem; margin-bottom: 0.75rem; color: var(--text-muted); font-size: 0.85rem; }
.dest-meta span { display: flex; align-items: center; gap: 0.3rem; }
.dest-meta svg { width: 15px; height: 15px; }
.dest-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.dest-card p { color: var(--text-muted); margin-bottom: 1.25rem; flex-grow: 1; font-size: 0.95rem; }

/* =========================================
   Testimonials
   ========================================= */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial-card { background: white; padding: 2.5rem 2rem; border-radius: var(--radius-lg); position: relative; border-left: 4px solid var(--autumn-gold); box-shadow: var(--shadow-sm); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 0.5rem; right: 1.5rem; font-family: var(--font-serif); font-size: 5rem; color: var(--warm-beige); line-height: 1; }
.stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.star-filled { color: var(--autumn-gold); fill: var(--autumn-gold); width: 18px; height: 18px; }
.review-text { font-size: 1.05rem; font-style: italic; color: var(--text-main); margin-bottom: 1.75rem; position: relative; z-index: 1; }
.reviewer { display: flex; align-items: center; gap: 1rem; }
.avatar { width: 3rem; height: 3rem; background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; }
.reviewer h4 { font-family: var(--font-sans); font-size: 1rem; margin-bottom: 0; }
.reviewer span { font-size: 0.85rem; color: var(--text-muted); }

/* =========================================
   CTA / Contact Section
   ========================================= */
.cta-section { position: relative; background-size: cover; background-position: center; background-attachment: fixed; color: white; padding: 6rem 2rem; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,24,16,0.88), rgba(139,69,19,0.85)); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: white; font-size: 2.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .cta-content h2 { font-size: 3.2rem; } }
.cta-content > p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 3rem; }
.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
@media (min-width: 768px) { .contact-info-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-item { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); padding: 2rem 1.5rem; border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; gap: 1rem; transition: var(--transition); }
.contact-item:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.contact-icon { background: white; color: var(--accent); width: 3.5rem; height: 3.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 22px; height: 22px; }
.contact-item span { font-weight: 500; font-size: 1rem; }

/* ---- Contact Form (Contact Page) ---- */
.contact-form-section { background: white; padding: 3rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.contact-form { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .contact-form { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-weight: 500; font-size: 0.9rem; color: var(--text-main); }
.form-group input, .form-group textarea, .form-group select { padding: 0.85rem 1rem; border: 1.5px solid var(--warm-beige); border-radius: var(--radius-md); font-family: var(--font-sans); font-size: 0.95rem; transition: var(--transition); background: var(--bg-main); color: var(--text-main); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,91,18,0.1); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { grid-column: 1 / -1; display: flex; justify-content: flex-end; margin-top: 0.5rem; }

/* =========================================
   Footer
   ========================================= */
.footer { background: var(--bg-dark); color: var(--text-light); padding-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-logo { margin-bottom: 1.5rem; display: inline-flex; color: white !important; }
.footer-brand p { color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; max-width: 300px; font-size: 0.95rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); transition: var(--transition); }
.social-links a:hover { background: var(--accent); color: white; }
.footer h3 { font-family: var(--font-sans); font-size: 1.1rem; color: white; margin-bottom: 1.5rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.95rem; }
.footer-links a:hover { color: var(--autumn-gold); padding-left: 4px; }
.newsletter-form { display: flex; margin-top: 1rem; }
.newsletter-form input { flex-grow: 1; padding: 0.8rem 1rem; border: none; border-radius: var(--radius-md) 0 0 var(--radius-md); outline: none; font-family: var(--font-sans); font-size: 0.95rem; }
.newsletter-form button { border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 0.8rem 1.1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; margin-top: 1rem; }
.footer-bottom .container { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .footer-bottom .container { flex-direction: row; } }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.bottom-links { display: flex; gap: 1.5rem; }
.bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.bottom-links a:hover { color: white; }

/* =========================================
   Animations
   ========================================= */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.slide-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ---- Falling Leaves (CSS only) ---- */
.falling-leaves { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; overflow: hidden; }
.leaf { position: absolute; top: -50px; font-size: 1.5rem; animation: leafFall linear infinite; opacity: 0.5; }
@keyframes leafFall { 0% { transform: translateY(-50px) rotate(0deg) translateX(0); opacity: 0.6; } 50% { opacity: 0.4; } 100% { transform: translateY(105vh) rotate(720deg) translateX(80px); opacity: 0; } }

/* =========================================
   Logo Image
   ========================================= */
.logo-img { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1); transition: filter 0.3s ease; }
.navbar.scrolled .logo-img { filter: none; }
.navbar.navbar-dark .logo-img { filter: brightness(0) invert(1); }
.footer-logo-img { filter: brightness(0) invert(1); height: 55px; }

/* Logo Text */
.logo-text { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; line-height: 1.2; color: white; transition: color 0.3s ease; }
.logo-text small { font-size: 0.7rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--autumn-gold); opacity: 0.85; }
.navbar.scrolled .logo-text { color: var(--primary-dark); }
.navbar.scrolled .logo-text small { color: var(--accent); }
.navbar.navbar-dark .logo-text { color: white; }
.footer .logo-text { color: white; }
.footer .logo-text small { color: var(--autumn-gold); }

/* =========================================
   Amir Khusrau Quote Section
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400;700&display=swap');

.quote-section { background: linear-gradient(135deg, var(--bg-dark) 0%, #3D2214 100%); padding: 3rem 2rem; position: relative; overflow: hidden; }
.quote-section::before { content: ''; position: absolute; inset: 0; background: url('images/hero-autumn.png') center/cover; opacity: 0.08; }
.quote-card { position: relative; z-index: 2; max-width: 750px; margin: 0 auto; text-align: center; }
.quote-decorative { font-size: 1.5rem; margin: 0.25rem 0; opacity: 0.6; }
.quote-urdu { font-family: 'Noto Nastaliq Urdu', serif; font-size: 1.8rem; line-height: 1.6; color: var(--autumn-gold); margin-bottom: 0.5rem; border: none; padding: 0; font-style: normal; }
@media (min-width: 768px) { .quote-urdu { font-size: 2.2rem; line-height: 1.7; } }
.quote-english { font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.4; color: rgba(255,255,255,0.85); font-style: italic; margin-bottom: 0.4rem; border: none; padding: 0; }
@media (min-width: 768px) { .quote-english { font-size: 1.5rem; } }
.quote-author { display: block; font-family: var(--font-sans); font-size: 0.9rem; color: rgba(255,255,255,0.5); font-style: normal; letter-spacing: 2px; text-transform: uppercase; margin-top: 0.15rem; }
