/* 
    Niazi Dawakhana Official - Master Stylesheet
    Core Design System & Responsive Layout
*/

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

:root {
    --primary-orange: #ff6b00; /* Vibrant Orange */
    --secondary-orange: #ff9d00;
    --orange-soft: rgba(255, 107, 0, 0.1);
    --orange-pale: #fff8f0;
    --white-pure: #ffffff;
    --white-off: #fafafa;
    --text-dark: #12100e;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 15px 35px rgba(255, 107, 0, 0.1);
    --shadow-lg: 0 30px 60px rgba(255, 107, 0, 0.15);
    --shadow-3d: 0 15px 0 #cc5500, 0 20px 40px rgba(0,0,0,0.25);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    --border-radius-card: 2rem;
    --border-radius-btn: 1rem;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes cinematicEntrance {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: #fdfdfd; /* Off-white for contrast against cards */
    color: var(--text-dark);
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(168, 126, 34, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(168, 126, 34, 0.05) 0%, transparent 40%);
    z-index: -2;
    pointer-events: none;
}

/* Zig Zag Staggered Animation */
@keyframes slideFromLeft {
    0% { opacity: 0; transform: translateX(-50px) scale(0.9); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideFromRight {
    0% { opacity: 0; transform: translateX(50px) scale(0.9); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

.product-card:nth-child(odd) {
    animation: slideFromLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.product-card:nth-child(even) {
    animation: slideFromRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Base Entrance Animation for all sections */
section {
    animation: cinematicEntrance 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--white-off); }
::-webkit-scrollbar-thumb { background: var(--primary-orange); border-radius: 10px; border: 3px solid var(--white-off); }

/* Urdu font for all Urdu text */
.urdu-text, 
.slide-content p, 
.product-desc, 
.review-text, 
.reviewer, 
.footer-col p, 
.footer-col a,
.main-description p,
.form-group label,
.main-header p,
.page-header p,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Nastaliq Urdu', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.2s;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 0, 0.2));
}
.logo-img:hover { transform: scale(1.05) rotate(2deg); }

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-weight: 520;
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
    font-family: "Inter", sans-serif;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--primary-orange);
    transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 4px;
    transition: 0.3s;
}

/* ---------- MAIN HEADER ---------- */
.main-header {
    text-align: center;
    padding: 100px 0 80px;
    background: radial-gradient(circle at top, #fff9e6 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.main-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 126, 34, 0.05) 0%, transparent 70%);
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

.main-header h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Noto Nastaliq Urdu', serif;
}

.main-header h1 span {
    display: block;
    font-size: 1.8rem;
    color: #4a3a1a;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 10px;
}

.main-header p {
    font-size: 1.4rem;
    color: #5f4e30;
    max-width: 900px;
    margin: 30px auto 0;
    line-height: 2;
    padding: 0 30px;
}

.main-description {
    max-width: 900px;
    margin: 20px auto 0;
}
.main-description p {
    font-size: 1.25rem;
    line-height: 2;
    color: #5f4e30;
    margin-bottom: 10px;
    text-align: center;
}

/* ---------- PAGE HEADER (Individual Pages) ---------- */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    background: var(--orange-pale);
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(168, 126, 34, 0.15) 0%, transparent 70%);
    top: -50%; left: -50%;
    animation: rotate 30s linear infinite;
}

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

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
    font-family: 'Noto Nastaliq Urdu', serif;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a3a1a;
    max-width: 800px;
    margin: 15px auto 0;
    z-index: 1;
    position: relative;
}

/* ---------- SECTION TITLES ---------- */
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 80px 0 50px;
    position: relative;
    text-align: center;
    color: var(--primary-orange);
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 0 15px 30px rgba(255, 107, 0, 0.1);
}
.section-title::after {
    content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 120px;
    height: 6px; background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 10px;
}

/* ---------- PRODUCT CARDS ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
    perspective: 1000px;
}

.product-card {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    aspect-ratio: 3 / 4;
    background-color: var(--white-pure);
    display: flex;
    align-items: flex-end;
    color: var(--text-dark);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border: 1px solid #eee;
}

.product-card:hover {
    box-shadow: 0 40px 80px rgba(255, 107, 0, 0.2);
    transform: translateY(-20px) rotateX(10deg);
}

.product-card:hover::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 50px rgba(168, 126, 34, 0.5);
    z-index: 4;
    pointer-events: none;
    border-radius: inherit;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(31, 26, 18, 0.95) 0%, rgba(31, 26, 18, 0.4) 60%, transparent 90%);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.product-card:hover::before {
    background: linear-gradient(0deg, rgba(168, 126, 34, 0.9) 0%, rgba(31, 26, 18, 0.5) 60%, transparent 90%);
}

.product-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s;
}

.product-card:hover .card-bg { transform: scale(1.1); }

.card-content {
    position: relative;
    z-index: 3;
    padding: 24px 20px 28px;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.product-desc {
    font-size: 1rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 40px;
    margin: 12px 0 16px;
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
    text-shadow: 0 1px 4px black;
    display: inline-block;
}

.card-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    backdrop-filter: blur(4px);
}

.btn-details {
    background: linear-gradient(180deg, var(--secondary-orange), var(--primary-orange));
    border: none;
    color: white;
    box-shadow: 0 6px 0 #cc5500, 0 10px 20px rgba(255, 107, 0, 0.3);
    transform: translateY(0);
}

.btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #cc5500, 0 15px 25px rgba(255, 107, 0, 0.4);
}

.btn-details:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #cc5500, 0 5px 10px rgba(255, 107, 0, 0.3);
}

/* ---------- HERO VIDEO SECTION ---------- */
.hero { padding: 20px 0 40px; }
.hero-video-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    height: 520px;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.volume-toggle {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}
.volume-toggle:hover {
    background: white;
    color: var(--primary-orange);
}
.mt-20 { margin-top: 20px; }

/* ---------- HERO SLIDER (Original - kept for reference if needed elsewhere) ---------- */

/* ---------- REVIEWS CAROUSEL ---------- */
.reviews-section {
    background: linear-gradient(120deg, #fff0d4, #fffae6);
    padding: 80px 0;
    border-radius: 4rem 4rem 0 0;
    margin-top: 60px;
}
.review-carousel { overflow: hidden; padding: 10px 0; }
.review-track { display: flex; gap: 30px; transition: transform 0.4s ease; }
.review-card {
    min-width: calc(33.333% - 20px);
    background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
    border-radius: 2.5rem; padding: 32px 28px; box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,0.8);
}
.review-card:hover { background: white; box-shadow: var(--shadow-md); }
.review-card i { color: var(--primary-orange); font-size: 2.4rem; opacity: 0.6; }
.review-text { font-size: 1.1rem; margin: 20px 0 18px; color: #3d3320; font-style: italic; }

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-orange);
}
.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange-soft);
}

.carousel-controls { display: flex; justify-content: center; gap: 30px; margin-top: 40px; }
.carousel-arrow {
    background: white; border: none; width: 56px; height: 56px; border-radius: 56px;
    font-size: 1.8rem; color: var(--primary-orange); cursor: pointer;
    box-shadow: 0 10px 20px rgba(150,100,30,0.15); transition: 0.2s;
}
.carousel-arrow:hover { background: var(--primary-orange); color: white; }

/* ---------- PRODUCT DETAIL (Single Product Pages) ---------- */
.product-detail { padding: 50px 0 30px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }

.product-image-container {
    background: white; border-radius: 2rem; padding: 0; overflow: hidden;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(183, 140, 30, 0.1);
    position: sticky; top: 100px;
}
.product-image-wrapper { width: 100%; aspect-ratio: 1/1; margin-bottom: 0; overflow: hidden; }
.product-detail-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-detail-img:hover { transform: scale(1.05); }

.trust-badges { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-top: 20px; padding: 0 20px 20px; }
.badge {
    background: var(--orange-soft); color: var(--primary-orange); padding: 8px 15px; border-radius: 30px;
    font-size: 0.9rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; border: 1px solid rgba(183, 140, 30, 0.2);
}

.product-info { background: white; border-radius: 2rem; padding: 40px; box-shadow: var(--shadow-lg); }
.product-info h1 { font-size: 2.5rem; color: var(--primary-orange); margin-bottom: 10px; line-height: 1.3; }
.product-subtitle { font-size: 1.3rem; color: #7a643a; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(183, 140, 30, 0.1); }

.price-section { background: var(--orange-pale); padding: 20px; border-radius: 1.5rem; margin-bottom: 25px; display: flex; align-items: center; justify-content: space-between; }
.price-label { font-size: 1.1rem; color: #5f4e30; }
.price-value { font-size: 2rem; font-weight: 700; color: var(--primary-orange); }

.features-list { list-style: none; margin: 25px 0; }
.features-list li { font-size: 1.1rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.features-list i { color: var(--primary-orange); font-size: 1.2rem; }

.action-buttons { display: flex; gap: 20px; margin: 35px 0 25px; }
.btn-primary, .btn-whatsapp { flex: 1; padding: 18px 25px; border-radius: 1.5rem; font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: all 0.2s; border: none; display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; }
.btn-primary { 
    background: linear-gradient(180deg, var(--secondary-orange), var(--primary-orange)); 
    color: white; 
    box-shadow: 0 6px 0 #cc5500, 0 12px 25px rgba(255, 107, 0, 0.3); 
    transform: translateY(0);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #cc5500, 0 15px 30px rgba(255, 107, 0, 0.4);
}
.btn-primary:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #cc5500, 0 5px 15px rgba(255, 107, 0, 0.3);
}
.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 6px 0 #128c7e, 0 12px 25px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:active { transform: translateY(4px); box-shadow: 0 2px 0 #128c7e; }

/* ---------- CONTACT FORM & INFO ---------- */
.contact-section { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.info-card { background: white; border-radius: 2rem; padding: 30px; box-shadow: var(--shadow-lg); margin-bottom: 30px; }
.info-card h3 { font-size: 1.8rem; color: var(--primary-orange); margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
.info-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; padding: 15px; border-radius: 1.2rem; transition: 0.3s; border: 1px solid transparent; }
.info-item:hover { background: var(--orange-soft); border-color: rgba(183, 140, 30, 0.2); transform: translateX(10px); }
.info-item i { font-size: 1.5rem; color: var(--primary-orange); width: 45px; height: 45px; background: var(--orange-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item p { margin: 0; font-size: 1.1rem; color: var(--text-dark); }
.info-item p a { color: var(--primary-orange); text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; }
.info-item p a:hover { color: #8a6a16; transform: scale(1.05); }
.social-links-contact { display: flex; gap: 15px; margin-top: 30px; }
.social-links-contact a { background: var(--orange-soft); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-orange); font-size: 1.5rem; transition: var(--transition); }
.social-links-contact a:hover { background: var(--primary-orange); color: white; transform: translateY(-5px); }

.contact-form { background: white; border-radius: 2rem; padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid rgba(183, 140, 30, 0.1); }
.contact-form h2 { font-size: 2rem; color: var(--primary-orange); margin-bottom: 30px; display: flex; align-items: center; gap: 15px; border-bottom: 2px solid var(--orange-soft); padding-bottom: 15px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 600; color: #4a3a1a; font-size: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px 20px; border: 2px solid #edebdf; border-radius: 1.2rem; font-size: 1.1rem; transition: all 0.3s; background: var(--white-off); font-family: 'Noto Nastaliq Urdu', serif; }
.form-group option { font-family: 'Noto Nastaliq Urdu', serif; padding: 10px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-orange); background: white; box-shadow: 0 10px 20px rgba(183, 140, 30, 0.1); transform: translateY(-2px); }

.products-selection-container { background: var(--orange-pale); padding: 20px; border-radius: 1.5rem; border: 1px solid rgba(183, 140, 30, 0.1); overflow: hidden; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; margin-top: 10px; max-height: 300px; overflow-y: auto; padding-right: 5px; }
/* Custom Scrollbar */
.products-grid::-webkit-scrollbar { width: 6px; }
.products-grid::-webkit-scrollbar-track { background: var(--orange-soft); border-radius: 10px; }
.products-grid::-webkit-scrollbar-thumb { background: var(--secondary-orange); border-radius: 10px; }

.product-checkbox { display: flex; align-items: center; gap: 12px; font-size: 1rem; padding: 10px 15px; background: white; border: 1px solid #eee; border-radius: 3rem; cursor: pointer; transition: 0.2s; user-select: none; }
.product-checkbox:hover { border-color: var(--secondary-orange); background: var(--white-pure); }
.product-checkbox input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--primary-orange); cursor: pointer; }
.product-checkbox label { margin-bottom: 0; cursor: pointer; flex: 1; }

.btn-submit { background: linear-gradient(135deg, var(--primary-orange), #9e7a1a); color: white; border: none; padding: 18px 30px; border-radius: 3rem; font-weight: 700; font-size: 1.2rem; cursor: pointer; transition: all 0.3s; width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; box-shadow: 0 10px 25px rgba(150, 100, 30, 0.3); }
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(150, 100, 30, 0.4); }
.btn-submit i { font-size: 1.4rem; }

/* ---------- ABOUT PAGE ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin: 40px 0; }
.about-text p { font-size: 1.1rem; color: #3d3320; margin-bottom: 20px; }
.about-image img { width: 100%; border-radius: 2rem; box-shadow: var(--shadow-lg); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin: 40px 0; }
.value-card { background: white; border-radius: 2rem; padding: 30px 20px; text-align: center; box-shadow: var(--shadow-md); transition: var(--transition); }
.value-card i { font-size: 2.8rem; color: var(--primary-orange); margin-bottom: 15px; }

.cta-section { text-align: center; margin: 60px 0; }
.cta-btn { display: inline-block; background: var(--primary-orange); color: white; padding: 16px 40px; border-radius: 3rem; font-weight: 600; font-size: 1.2rem; text-decoration: none; transition: 0.2s; box-shadow: var(--shadow-md); }

/* ---------- FOOTER ---------- */
.footer { 
    background: linear-gradient(180deg, var(--primary-orange) 60%, #cc5500 100%); 
    color: white; 
    padding: 60px 0 30px; 
    margin-top: 40px; 
    box-shadow: 0 -20px 40px rgba(255, 107, 0, 0.1); 
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 48px; }
.footer-col h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 25px; color: white; border-bottom: 2px solid rgba(255,255,255,0.3); padding-bottom: 10px; display: inline-block; }
.footer-col p, .footer-col a { color: rgba(255,255,255,0.9); text-decoration: none; margin: 12px 0; display: flex; align-items: center; gap: 12px; transition: 0.2s; font-weight: 500; }
.footer-col a:hover { color: white; transform: scale(1.05); }
.social-links { display: flex; gap: 10px; margin-top: 20px; flex-wrap: nowrap; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
.social-links::-webkit-scrollbar { display: none; }
.social-links a { 
    width: 40px; 
    height: 40px; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    transition: all 0.3s; 
    box-shadow: 0 4px 0 rgba(0,0,0,0.15);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.social-links a.facebook { background: #1877f2; }
.social-links a.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-links a.youtube { background: #ff0000; }
.social-links a.tiktok { background: #010101; }
.social-links a.whatsapp { background: #25d366; }

.social-links a:hover { transform: translateY(-5px); box-shadow: 0 8px 0 rgba(0,0,0,0.1); filter: brightness(1.1); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); margin-top: 50px; padding-top: 25px; text-align: center; color: white; }

.social-links.header-social { justify-content: center; margin-top: 30px; }
.mobile-only { display: none; }
.highlight-orange { color: var(--primary-orange); }

/* Remove underlines from social links */
.social-links a::after { display: none !important; }

/* Menu Card Logo Style */
.nav-links .menu-logo { 
    text-align: center; 
    margin-bottom: 20px; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    padding-bottom: 20px;
}
.nav-links .menu-logo img { width: 80px; height: auto; display: block; margin: 0 auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }

/* Sticky Side Social Bar for Mobile */
.sticky-social-bar {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.sticky-social-bar a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.sticky-social-bar a:hover { transform: scale(1.1); }

@media (max-width: 768px) {
    .mobile-only { display: block; margin-top: 20px; width: 100%; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 25px; }
    .nav-links .social-links { 
        display: flex !important; 
        justify-content: center !important; 
        gap: 15px !important; 
        width: 100% !important; 
        background: transparent !important;
        border: none !important;
    }
    /* Override long menu button style for social icons */
    .nav-links .social-links a { 
        width: 55px !important; 
        height: 55px !important; 
        padding: 0 !important; 
        justify-content: center !important; 
        border-radius: 50% !important; 
        margin: 0 !important;
        box-shadow: 0 8px 15px rgba(0,0,0,0.1) !important;
        border: none !important;
    }
    .sticky-social-bar { display: flex; }
}

.to-top {
    position: fixed; bottom: 30px; right: 30px; background: var(--primary-orange); color: white;
    width: 52px; height: 52px; border-radius: 52px; display: flex; align-items: center;
    justify-content: center; font-size: 1.8rem; box-shadow: 0 10px 25px rgba(150,100,30,0.4);
    cursor: pointer; opacity: 0; visibility: hidden; transition: 0.2s; border: none; z-index: 99;
}
.to-top.visible { opacity: 1; visibility: visible; }

/* ========== FORM BUTTON & INPUTS ========== */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(255,107,0,0.25);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 15px;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255,107,0,0.35);
    background: #e66000;
}

.submit-btn:active { transform: translateY(0); }

.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    cursor: pointer;
    color: #444;
}

.form-group select:focus {
    border-color: var(--primary-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

/* ========== HERO SECTION ========== */

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .nav-links { gap: 20px; }
    .container { padding: 0 20px; }
    .review-card { min-width: calc(50% - 15px); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 10px 0 50px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-right: 1px solid rgba(168, 126, 34, 0.1);
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links li { 
        width: 100%; 
        margin-bottom: 10px;
    }
    .nav-links a { 
        font-size: 1.2rem; 
        width: 100%; 
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px 25px;
        background: var(--orange-soft);
        color: var(--primary-orange);
        border-radius: 1.5rem;
        transition: 0.3s;
        border: 1px solid rgba(168, 126, 34, 0.1);
    }
    .nav-links a:hover, .nav-links a.active {
        background: var(--primary-orange);
        color: white;
        transform: translateX(10px) scale(1.05);
        box-shadow: var(--shadow-md);
    }
    .nav-links a::after { display: none; } /* Remove the underline animation for sidebar */
    .main-header { padding: 40px 0; border-radius: 0 0 2.5rem 2.5rem; }
    .main-header h1 { font-size: 2.2rem; }
    .slide { height: 450px; padding: 30px; }
    .slide-content h3 { font-size: 1.8rem; }
    .review-card { min-width: calc(100% - 20px); }
    .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .product-image-container { position: static; }
    .product-info h1 { font-size: 2rem; }
    .action-buttons { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .main-header h1 { font-size: 1.8rem; }
    .main-header h1 span { font-size: 1.2rem; }
    .product-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col p, .footer-col a { justify-content: center; }
    .social-links { justify-content: center; }
    .btn { width: 100%; justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 25px 15px; border-radius: 1.5rem; }
    .info-card { padding: 20px 15px; border-radius: 1.5rem; }
    .products-grid { grid-template-columns: 1fr; }
}

/* 
=========================================
      THANK YOU PAGE DESIGN
=========================================
*/
/* 
=========================================
      THANK YOU PAGE DESIGN (CINEMATIC)
=========================================
*/
.thankyou-section {
    padding: 120px 20px;
    background: radial-gradient(circle at 50% 50%, #fffbf0 0%, #fdfdfd 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.thankyou-section::before {
    content: '';
    position: absolute;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.03) 0%, transparent 70%);
    top: -50%; left: -50%;
    animation: rotate 40s linear infinite;
}

.thankyou-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 650px;
    width: 100%;
    padding: 60px 40px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    animation: cinematicEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.thankyou-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 10px;
    background: linear-gradient(90deg, #ff6b00, #ff9e00);
    border-radius: 40px 40px 0 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b00, #ff9e00);
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 35px;
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.3);
    position: relative;
}

.success-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.thankyou-card h1 {
    font-size: 3.5rem;
    color: #ff6b00;
    margin-bottom: 5px;
    font-family: 'Noto Nastaliq Urdu', serif !important;
    font-weight: 700;
}

.thankyou-card h2 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 35px;
    font-family: 'Noto Nastaliq Urdu', serif !important;
}

.order-message {
    background: #fffcf5;
    padding: 30px;
    border-radius: 25px;
    margin-bottom: 40px;
    text-align: right;
    direction: rtl;
    border: 1px solid rgba(255, 107, 0, 0.05);
}

.order-message p {
    margin: 15px 0;
    color: #4a4a4a;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Noto Nastaliq Urdu', serif;
}

.order-message i {
    color: #ff6b00;
    font-size: 1.3rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #25d366 !important;
    color: white !important;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 60px;
    font-size: 1.25rem;
    font-weight: 800;
    width: 100%;
    margin-bottom: 30px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.25);
    font-family: 'Noto Nastaliq Urdu', serif;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.35);
    background: #20ba59 !important;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.action-btn {
    padding: 18px;
    border-radius: 20px;
    background: #ffffff;
    color: #2d3436;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    border: 2px solid #f0f0f0;
    font-family: 'Noto Nastaliq Urdu', serif;
}

.action-btn:hover {
    background: #2d3436;
    color: #ffffff;
    border-color: #2d3436;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    .thankyou-section { padding: 60px 15px; }
    .thankyou-card { padding: 40px 25px; border-radius: 30px; }
    .thankyou-card h1 { font-size: 2.8rem; }
    .thankyou-card h2 { font-size: 1.4rem; }
    .action-buttons { grid-template-columns: 1fr; }
    .order-message p { font-size: 1.05rem; }
    .success-icon { width: 80px; height: 80px; font-size: 2.2rem; }
}

