/* ============================================================
   MUMTAZ TAILORS – Global Stylesheet
   Theme: Royal Gold & Deep Navy
   ============================================================ */

:root {
    --gold: #c9a84c;
    --gold-light: #e4c97a;
    --gold-dark: #a07830;
    --dark: #0f0f0f;
    --dark-navy: #12192c;
    --dark-section: #1a1a2e;
    --cream: #fdf8f0;
    --text-light: #e8e0d0;
    --text-muted-custom: #9a9078;
}

/* ── Base ── */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: #fff;
    color: #222;
    margin: 0;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus,
.form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--gold);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* ── Gold Divider ── */
.gold-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    margin: 0.8rem auto;
    border-radius: 2px;
}

/* ── Top Bar ── */
.top-bar {
    background: var(--dark-navy);
    color: var(--gold-light);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

/* ── Navbar ── */
.main-navbar {
    background: var(--dark);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.main-navbar .nav-link {
    color: var(--text-light) !important;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s;
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s, left 0.3s;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active-link {
    color: var(--gold-light) !important;
}

.main-navbar .nav-link:hover::after {
    width: 80%;
    left: 10%;
}

/* ── Brand Logo ── */
.brand-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-script {
    font-family: 'Great Vibes', cursive;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}

.brand-serif {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    letter-spacing: 0.35em;
    color: #fff;
    margin-top: -4px;
}

.brand-tagline {
    font-size: 0.65rem;
    color: var(--text-muted-custom);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
}

.navbar-toggler {
    border-color: var(--gold) !important;
}

.navbar-toggler-icon {
    filter: invert(80%) sepia(60%) saturate(400%) hue-rotate(5deg);
}

/* ── Gold Button ── */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #1a1000 !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.5rem 1.4rem;
    border: none;
    border-radius: 2px;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(201,168,76,0.35);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 5px 20px rgba(201,168,76,0.5);
    transform: translateY(-1px);
    color: #000 !important;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-light) !important;
    border: 2px solid var(--gold);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.6rem 1.8rem;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #1a1000 !important;
}

/* ═══════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════ */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a12 0%, #12192c 40%, #1e1206 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3rem, 8vw, 6.5rem);
    color: var(--gold-light);
    line-height: 1.1;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 30px rgba(201,168,76,0.3);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    letter-spacing: 0.3em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-badge {
    text-align: center;
}

.hero-badge .badge-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-badge .badge-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.hero-divider-v {
    width: 1px;
    height: 60px;
    background: rgba(201,168,76,0.3);
    align-self: center;
}

/* Hero ornament / decoration */
.hero-ornament {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.hero-ornament::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 50%;
}

.hero-ornament::after {
    content: '';
    position: absolute;
    inset: 60px;
    border: 1px solid rgba(201,168,76,0.06);
    border-radius: 50%;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(201,168,76,0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.15rem;
    color: var(--dark-navy);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* Legacy / Why Choose section */
.legacy-section {
    padding: 5rem 0;
    background: var(--dark-navy);
    color: #fff;
}

.legacy-stat {
    text-align: center;
    padding: 1.5rem;
}

.legacy-stat .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.legacy-stat .stat-label {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    margin-top: 0.4rem;
}

/* Testimonial */
.testimonials-section {
    padding: 5rem 0;
    background: #fff;
}

.testimonial-card {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    padding: 2rem 2rem 2rem 2.5rem;
    border-radius: 0 4px 4px 0;
    height: 100%;
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: var(--gold-light);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-card .reviewer {
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 0.9rem;
}

.stars { color: #f5a623; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */

.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-navy) 60%, #1a0d00 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-hero h1 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    letter-spacing: 0.05em;
}

.breadcrumb-item a { color: var(--gold-light); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gold); }

.about-section {
    padding: 5rem 0;
}

.about-image-frame {
    position: relative;
    display: inline-block;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px;
    right: 15px; bottom: 15px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: 0;
}

.about-image-frame img, .about-placeholder {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    width: 100%;
}

.about-placeholder {
    background: linear-gradient(135deg, var(--dark-navy), #2a1a00);
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.about-placeholder .placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.about-placeholder .placeholder-text {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0.35rem;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 3px var(--gold-dark);
}

.timeline-item .year {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.timeline-item h5 {
    color: var(--dark-navy);
    margin-bottom: 0.3rem;
}

.timeline-item p {
    font-size: 0.92rem;
    color: #666;
    margin: 0;
}

/* Team / Values cards */
.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(201,168,76,0.2);
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--gold);
    background: var(--cream);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════
   GALLERY PAGE
═══════════════════════════════════════════ */

.gallery-section {
    padding: 4rem 0;
}

.gallery-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    padding: 0.45rem 1.2rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #1a1000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: var(--dark-navy);
}

.gallery-item:first-child,
.gallery-item:nth-child(5) {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-navy), #1a1206);
    color: var(--gold);
    transition: all 0.4s;
    font-family: 'Playfair Display', serif;
    padding: 2rem;
    text-align: center;
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, #1e2a4a, #2a1800);
}

.gallery-placeholder .gallery-icon {
    font-size: 3.5rem;
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,8,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: #fff;
}

.gallery-overlay-content h5 {
    color: var(--gold-light);
    margin-bottom: 0.25rem;
}

/* Gallery image styles */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Hero image frame */
.hero-image-frame {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(201,168,76,0.35);
    border-radius: 4px;
    z-index: 0;
}

.hero-shop-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */

.contact-section {
    padding: 5rem 0;
}

.contact-card {
    background: var(--dark-navy);
    color: #fff;
    border-radius: 8px;
    padding: 3rem 2.5rem;
    height: 100%;
}

.contact-card h3 {
    color: var(--gold-light);
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-info-item .ci-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact-info-item h6 {
    color: var(--gold-light);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form-card {
    background: #fff;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
}

.contact-form-card h3 {
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.form-label {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.form-control, .form-select {
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 2px;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
    outline: none;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(201,168,76,0.3);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */

.main-footer {
    background: var(--dark);
}

.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-text {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 0.6rem;
    display: block;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.rating-badge {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
    margin: 0;
}

.footer-credit {
    margin-top: 0.35rem !important;
}

.footer-credit a {
    color: rgba(201,168,76,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-credit a:hover {
    color: #c9a84c;
    text-decoration: underline;
}

/* ── CTA Banner ── */
.cta-section {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(10,8,0,0.7);
    margin-bottom: 2rem;
}

.btn-dark-custom {
    background: var(--dark);
    color: var(--gold-light) !important;
    border: none;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.75rem 2rem;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-dark-custom:hover {
    background: var(--dark-navy);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

/* ── Utilities ── */
.text-gold { color: var(--gold) !important; }
.bg-dark-navy { background: var(--dark-navy) !important; }
.bg-cream { background: var(--cream) !important; }

@media (max-width: 768px) {
    .hero-ornament { display: none; }
    .gallery-item:first-child,
    .gallery-item:nth-child(5) {
        grid-column: span 1;
        aspect-ratio: 3/4;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-badges { gap: 1rem; }
    .hero-divider-v { display: none; }
}
