/* ============================================
   Lucky Tailor — Professional Design System
   Indian Theme: Saffron, Maroon, Gold
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    --primary: #B8860B;
    --primary-dark: #800000;
    --primary-light: #FF9933;
    --accent: #FFD700;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #7a7a8a;
    --bg-light: #faf8f5;
    --bg-warm: #f9f5f0;
    --bg-section: #f5f0ea;
    --white: #ffffff;
    --border: #e8e0d8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 40px rgba(184,134,11,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* ===== Global Reset & Base ===== */
html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

p {
    line-height: 1.7;
    color: var(--text-body);
}

a {
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Disable WOW.js scroll animation artifacts ===== */
.wow {
    visibility: visible !important;
    animation-name: none !important;
}

/* ===== Hide duplicate scroll-up button ===== */
#scrollUp {
    display: none !important;
}

/* ===== Preloader ===== */
.preloader {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d0a0a 100%);
}

.preloader .preloader-img img {
    max-width: 100px;
}

.preloader .preloader-circle {
    width: 120px;
    height: 120px;
    border-color: rgba(255,153,51,0.2);
    border-top-color: var(--primary-light);
    background-color: transparent;
    box-shadow: none;
}

/* ===== Skip Link (Accessibility) ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 12px 24px;
    z-index: 10000;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    color: var(--white);
    text-decoration: none;
}

/* ===== Header ===== */
.header-area {
    background: var(--white);
}

.header-sticky.sticky-bar {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-btn {
    background: var(--gradient) !important;
    color: var(--white) !important;
    border-radius: var(--radius-xl);
    padding: 10px 28px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 3px 12px rgba(255,153,51,0.3);
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,153,51,0.4);
    color: var(--white) !important;
}

/* Navigation links */
#navigation > li > a {
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

#navigation > li > a:hover {
    color: var(--primary) !important;
}

/* ===== Hero Section ===== */
.hero-overly::before {
    background: linear-gradient(135deg, rgba(26,26,46,0.75) 0%, rgba(128,0,0,0.6) 100%) !important;
}

.slider-area .single-slider .hero-caption {
    text-align: left;
    overflow: visible;
}

.hero-caption h1 {
    color: var(--white);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-caption h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-caption p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-caption2 {
    text-align: center;
}

.hero-caption2 p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-caption .btn {
    margin-top: 10px;
}

/* Hero icon sizing */
.slider-area .single-slider .hero-caption > img {
    display: block;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255,153,51,0.4));
}

/* ===== Buttons ===== */
.btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-xl);
    padding: 14px 36px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255,153,51,0.3);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,153,51,0.4);
    color: var(--white);
    text-decoration: none;
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gradient) !important;
    border: none !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%) !important;
}

/* ===== Section Spacing ===== */
.section-padding40 {
    padding: 80px 0;
}

.section-padding {
    padding: 80px 0;
}

/* ===== Section Titles ===== */
.section-tittle {
    margin-bottom: 50px;
}

.section-tittle h2 {
    color: var(--primary-dark);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.section-tittle.text-center h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-tittle p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ===== Offer Cards (3-column) ===== */
.clients-area {
    background: var(--bg-light);
}

.single-offers {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.single-offers:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184,134,11,0.2);
}

.offers-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.offers-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.single-offers:hover .offers-img img {
    transform: scale(1.05);
}

.offers-cap {
    padding: 28px 24px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offers-cap h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.4;
}

.offers-cap h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.offers-cap h3 a:hover {
    color: var(--primary);
}

.offers-cap p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0;
    flex-grow: 1;
}

.offers-cap span {
    background: var(--gradient);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.offers-icon {
    font-size: 1.1rem;
}

/* ===== Service Icon Cards (4-column) ===== */
.categories-area {
    background: var(--white);
}

.single-cat {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

.single-cat:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184,134,11,0.2);
}

.cat-icon {
    text-align: center;
    padding: 32px 20px 16px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-section) 100%);
    position: relative;
}

.cat-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    opacity: 0;
    transition: var(--transition);
}

.single-cat:hover .cat-icon::after {
    opacity: 1;
}

.cat-icon img {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
    transition: transform 0.3s ease;
}

.single-cat:hover .cat-icon img {
    transform: scale(1.08);
}

.cat-cap {
    padding: 20px 24px 28px;
    text-align: center;
    flex-grow: 1;
}

.cat-cap h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--text-dark);
}

.cat-cap p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== Equal Height Card Rows ===== */
.clients-area .row,
.categories-area .row {
    display: flex;
    flex-wrap: wrap;
}

.clients-area .row > [class*='col-'],
.categories-area .row > [class*='col-'] {
    display: flex;
}

/* ===== Visit Tailor / About Section ===== */
.visit-tailor-area {
    background: var(--bg-light);
}

.tailor-details {
    padding: 60px 40px;
}

.tailor-details h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.tailor-details p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.tailor-details .btn {
    margin-top: 15px;
}

/* ===== Video Section ===== */
.video-area {
    min-height: 400px;
    position: relative;
}

.video-area::before {
    background: linear-gradient(135deg, rgba(128,0,0,0.7) 0%, rgba(26,26,46,0.6) 100%) !important;
}

.popup-video.btn-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 15px rgba(255,255,255,0.15), 0 0 0 30px rgba(255,255,255,0.08);
    transition: var(--transition);
}

.popup-video.btn-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(255,255,255,0.2), 0 0 0 40px rgba(255,255,255,0.1);
}

.popup-video.btn-icon i {
    color: var(--primary-dark);
    font-size: 22px;
    margin-left: 4px;
}

/* ===== Testimonials ===== */
.testimonial-area {
    background: var(--bg-light);
}

.testimonial-caption {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-caption::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 36px;
    width: 16px;
    height: 16px;
    background: var(--white);
    transform: rotate(45deg);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.testimonial-caption p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    font-style: italic;
}

.quotes-sign {
    width: 40px;
    opacity: 0.6;
    margin-bottom: 15px;
}

.testimonial-founder {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.founder-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.founder-text {
    margin-left: 15px;
}

.founder-text span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.founder-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== Instagram Section ===== */
.instagram-area {
    background: var(--white);
}

.single-instagram {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.single-instagram img {
    transition: transform 0.5s ease;
}

.single-instagram:hover img {
    transform: scale(1.05);
}

.single-instagram a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(128,0,0,0.5);
    opacity: 0;
    transition: var(--transition);
}

.single-instagram:hover a {
    opacity: 1;
}

.single-instagram a i {
    color: var(--white);
    font-size: 28px;
}


/* ===== Footer ===== */
.footer-wrapper {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2d0a0a 100%) !important;
    padding-left: 0 !important;
    overflow-x: hidden;
}

.footer-area {
    padding: 60px 0 40px;
}

.footer-logo img {
    max-width: 160px;
}

.footer-pera p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
    margin-bottom: 10px;
}

.footer-pera a {
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.footer-pera a:hover {
    color: var(--accent);
}

.footer-pera i.fa-map-marker-alt {
    color: var(--primary-light);
    margin-right: 4px;
}

.footer-tittle h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-tittle h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-light);
    border-radius: 2px;
}

.footer-tittle ul li {
    margin-bottom: 10px;
}

.footer-tittle ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
    padding: 3px 0;
}

.footer-tittle ul li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-tittle .number a,
.footer-tittle .number2 a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.footer-tittle .number i,
.footer-tittle .number2 i {
    color: var(--primary-light);
    margin-right: 6px;
    font-size: 13px;
}

.footer-tittle .number a:hover,
.footer-tittle .number2 a:hover {
    color: var(--accent);
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: var(--transition);
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom-area {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-border {
    padding: 20px 0;
}

.footer-copy-right p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-copy-right a {
    color: var(--primary-light);
    transition: var(--transition);
}

.footer-copy-right a:hover {
    color: var(--accent);
}

/* Map in footer */
.map-area {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 0 0 80px;
}

.contact-section > .container > iframe {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 50px 0 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.contact-info {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-info:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184,134,11,0.2);
}

.contact-info__icon {
    background: var(--gradient);
    color: var(--white);
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.contact-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== Forms ===== */
.form-control {
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
    outline: none;
}

.button-contactForm {
    background: var(--gradient) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: var(--radius-xl) !important;
    padding: 14px 40px !important;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
}

.button-contactForm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,153,51,0.35);
}

/* ===== Blog Page ===== */
.blog_area {
    background: var(--bg-light);
}

.blog_item {
    background: var(--white);
    margin-bottom: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog_item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184,134,11,0.2);
}

.blog_item_img {
    position: relative;
    overflow: hidden;
}

.blog_item_img img {
    transition: transform 0.5s ease;
}

.blog_item:hover .blog_item_img img {
    transform: scale(1.03);
}

.blog_item_date {
    background: var(--gradient);
    border-radius: var(--radius-sm);
}

.blog_details {
    padding: 28px 24px;
}

.blog-head {
    color: var(--text-dark) !important;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    transition: var(--transition);
}

.blog_item:hover .blog-head {
    color: var(--primary) !important;
}

.blog_details p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.blog-info-link li a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.blog-info-link li a:hover {
    color: var(--primary);
}

/* Blog Sidebar */
.blog_right_sidebar .single_sidebar_widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.widget_title {
    color: var(--text-dark) !important;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.widget_title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
}

/* Blog Pagination */
.blog-pagination .page-link {
    border-radius: var(--radius-sm);
    margin: 0 4px;
    border: 1px solid var(--border);
    color: var(--text-body);
    transition: var(--transition);
}

.blog-pagination .page-item.active .page-link {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
}

.blog-pagination .page-link:hover {
    background: var(--bg-warm);
    border-color: var(--primary);
    color: var(--primary);
}

/* Tag Clouds */
.tag_cloud_widget .list li a {
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 6px 16px;
    font-size: 0.82rem;
    transition: var(--transition);
}

.tag_cloud_widget .list li a:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

/* Blog sidebar buttons */
.btn_1.boxed-btn {
    background: var(--gradient) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: var(--radius-xl) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn_1.boxed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,153,51,0.3);
}

/* ===== Service Items (services.html grid) ===== */
.services-list-area {
    background: var(--bg-light);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,153,51,0.12), rgba(190,146,120,0.12));
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.service-category {
    background: var(--white);
    border-radius: var(--radius-lg, 16px);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark, #be9278));
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.category-svg-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.category-header h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.service-item {
    background: var(--bg-light, #f9f7f5);
    border-radius: var(--radius-md);
    box-shadow: none;
    border: 1px solid var(--border);
    padding: 24px 18px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
    background: var(--white);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,153,51,0.1), rgba(190,146,120,0.15));
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.service-item h5 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.service-item p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted, #777);
    line-height: 1.5;
}

.service-svg-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
    object-fit: contain;
}

.services-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark, #be9278));
    color: var(--white);
    border-radius: var(--radius-lg, 16px);
    padding: 40px 30px;
    margin-top: 10px;
}

.services-cta h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.services-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.services-cta .header-btn {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.services-cta .header-btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: var(--white);
    text-decoration: none;
}

/* ===== Back to Top ===== */
#back-top {
    bottom: 100px;
    right: 35px;
    z-index: 9998;
    background: none;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
    line-height: normal;
}

#back-top a {
    background: var(--gradient);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(255,153,51,0.3);
    transition: var(--transition);
}

#back-top a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,153,51,0.4);
}

/* ===== Accessibility ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== Text Utilities ===== */
.single-offers p,
.single-cat p,
.hero-caption p,
.footer-pera p,
.testimonial-caption p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ===== Smooth Image Loading ===== */
img[loading="lazy"] {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .slider-area .single-slider .hero-caption {
        text-align: center;
        padding: 20px;
        overflow: visible;
    }
    
    .hero-caption p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .slider-area .single-slider .hero-caption > img {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .section-padding40 {
        padding: 60px 0;
    }
    
    .tailor-details {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .section-padding40 {
        padding: 50px 0;
    }
    
    .footer-area {
        padding: 40px 0 30px;
    }
    
    .single-footer-caption {
        margin-bottom: 30px;
    }
    
    .offers-img {
        height: 180px;
    }
    
    .cat-icon {
        height: 120px;
        padding: 24px 16px 12px;
    }
    
    .cat-icon img {
        width: 65px;
        height: 65px;
        max-width: 65px;
        max-height: 65px;
    }
    
    .map-area {
        padding-bottom: 75%;
        margin-top: 20px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info__icon {
        margin: 0 auto 12px;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .contact-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .hero-caption h1 {
        font-size: 1.8rem;
    }
    
    .slider-area .single-slider .hero-caption > img {
        width: 80px;
        height: 80px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-padding40 {
        padding: 40px 0;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .single-offers,
    .single-cat {
        margin-bottom: 0;
    }
    
    .offers-img {
        height: 160px;
    }
    
    .offers-cap {
        padding: 20px 16px;
    }
    
    .cat-cap {
        padding: 16px;
    }
    
    .map-area {
        padding-bottom: 100%;
    }
    
    .footer-wrapper {
        padding-left: 15px !important;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    #back-top {
        bottom: 82px;
        right: 24px;
    }
    
    .services-list-area h3 {
        font-size: 1.1rem;
    }
    
    .service-category {
        padding: 20px 16px;
    }
    
    .service-item {
        padding: 16px 12px;
    }
    
    .service-item h5 {
        font-size: 0.85rem;
    }
    
    .service-item p {
        font-size: 0.78rem;
    }
    
    .service-icon {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .service-svg-icon {
        width: 64px;
        height: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}


/* ===== Contact Page Map ===== */
.contact-map {
    box-shadow: var(--shadow-md);
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary);
}

/* ===== Submenu Styling ===== */
.submenu {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.submenu li a {
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.submenu li a:hover {
    background: var(--bg-warm);
    color: var(--primary) !important;
}

/* ===== Dot Style (Testimonial Slider) ===== */
.dot-style .slick-dots li button {
    background: var(--border);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.dot-style .slick-dots li.slick-active button {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

.h1-testimonial-active.dot-style .slick-dots button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border, #ddd);
    padding: 0;
    border: none;
    cursor: pointer;
    transition: var(--transition, 0.3s);
}

.h1-testimonial-active.dot-style .slick-dots .slick-active button {
    background: var(--primary, #FF9933);
    width: 24px;
    border-radius: 5px;
}

/* ===== Slick Arrow Text Fix ===== */
.h1-testimonial-active button.slick-arrow,
.blog-active button.slick-arrow,
.slider-active button.slick-arrow {
    font-size: 0;
    line-height: 0;
}

.h1-testimonial-active button.slick-arrow i,
.blog-active button.slick-arrow i,
.slider-active button.slick-arrow i {
    font-size: 20px;
    line-height: 1;
}


/* ============================================
   Contact Page — Enhanced Sections
   ============================================ */

/* --- Contact Info Cards --- */
.contact-cards-section {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-cards-row {
    display: flex;
    flex-wrap: wrap;
}

.contact-cards-row > [class*='col-'] {
    display: flex;
    margin-bottom: 24px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184,134,11,0.2);
}

.contact-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.contact-card__icon--whatsapp {
    background: #25D366;
}

.contact-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 6px;
    line-height: 1.7;
}

.contact-card p a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.contact-card p a:hover {
    color: var(--primary);
}

.contact-card__link {
    display: inline-block;
    margin-top: auto;
    padding-top: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-card__link i {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.contact-card__link:hover {
    color: var(--primary-dark);
}

.contact-card__link:hover i {
    transform: translateX(4px);
}

.contact-card__note {
    display: inline-block;
    margin-top: 8px;
    background: var(--bg-warm);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-xl);
}

.contact-card__whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px 32px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.contact-card__whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    color: var(--white);
    text-decoration: none;
}

/* --- Business Hours Section --- */
.business-hours-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.section-title-left {
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.hours-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.hours-table {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.hours-time {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 14px;
    border-radius: var(--radius-xl);
}

.hours-time--open {
    background: rgba(37,211,102,0.1);
    color: #1a8a42;
}

.hours-time--half {
    background: rgba(255,193,7,0.15);
    color: #b8860b;
}

.hours-time--closed {
    background: rgba(220,53,69,0.1);
    color: #c0392b;
}

.contact-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 300px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: block;
}

/* --- Contact Form Section --- */
.contact-form-section {
    padding: 70px 0;
    background: var(--white);
}

.contact-form-wrapper {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-section label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}

.required-star {
    color: #c0392b;
}

.contact-form-section .form-group {
    margin-bottom: 20px;
}

.contact-form-section .button-contactForm i {
    margin-right: 6px;
}

/* --- FAQ Section --- */
.contact-faq-section {
    padding: 70px 0 80px;
    background: var(--bg-light);
}

.section-title-center {
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.section-title-center::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-list {
    margin-top: 10px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(184,134,11,0.2);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: rgba(184,134,11,0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* --- Contact Page Responsive --- */
@media (max-width: 991px) {
    .contact-cards-section {
        margin-top: -40px;
    }

    .contact-form-wrapper {
        padding: 36px 28px;
    }

    .contact-map-wrapper {
        min-height: 280px;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .contact-cards-section {
        margin-top: -30px;
    }

    .contact-card {
        padding: 28px 20px;
    }

    .business-hours-section {
        padding: 50px 0;
    }

    .contact-form-section {
        padding: 50px 0;
    }

    .contact-faq-section {
        padding: 50px 0 60px;
    }

    .section-title-left,
    .contact-form-header h2,
    .section-title-center {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-cards-section {
        margin-top: -20px;
    }

    .contact-card {
        padding: 24px 16px;
    }

    .contact-form-wrapper {
        padding: 28px 18px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }
}
