/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #8B5A2B; /* Rich brown */
    --secondary-color: #D4AF37; /* Gold */
    --accent-color: #5D4037; /* Dark brown */
    --light-color: #F5F5F5;
    --dark-color: #333;
    --white: #fff;
    --black: #000;
    
    /* Text Colors */
    --text-dark: #333;
    --text-light: #777;
    
    /* Fonts */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: #e6c04d;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    color: var(--accent-color);
}

/* Announcement Bar */
.announcement {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.announcement p {
    margin: 0;
    color: var(--dark-color);
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    font-size: 24px;
    margin: 0;
    color: var(--primary-color);
    line-height: 1;
}

.logo-text p {
    font-size: 12px;
    letter-spacing: 2px;
    margin: 0;
    color: var(--text-light);
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a i {
    font-size: 14px;
}

.nav-cta {
    margin-left: auto;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.fabric-samples {
    position: absolute;
    right: 5%;
    bottom: -50px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.fabric-sample {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.fabric-sample:hover {
    transform: translateY(-10px);
}

.fabric-sample::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--dark-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.fabric-sample:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

/* Quick Booking Section */
.quick-booking {
    background-color: var(--white);
    padding: 60px 0;
    margin-top: 80px;
    box-shadow: var(--shadow-sm);
}

.booking-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.booking-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 14px;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-card i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    margin: 0;
}

/* Signature Services Section */
.signature-services {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.highlighted {
    border: 2px solid var(--secondary-color);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
    text-align: center;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255,255,255,0.8);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    padding: 40px;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.quote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 40px;
    color: var(--secondary-color);
    opacity: 0.5;
    position: absolute;
}

.quote::before {
    top: -20px;
    left: -15px;
}

.quote::after {
    bottom: -40px;
    right: -15px;
}

.client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.client-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-controls button {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button:hover {
    color: var(--secondary-color);
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
}

/* Fabric Showcase Section */
.fabric-showcase {
    padding: var(--section-padding);
    background: var(--white);
}

.fabric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.fabric-item {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.fabric-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fabric-item:hover img {
    transform: scale(1.05);
}

.fabric-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.fabric-item:hover .fabric-overlay {
    transform: translateY(0);
}

.fabric-overlay h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.fabric-overlay p {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

/* Master Tailor Section */
.master-tailor {
    padding: var(--section-padding);
    background: var(--light-color);
}

.master-tailor .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tailor-content {
    flex: 1;
}

.tailor-image {
    flex: 1;
    position: relative;
}

.tailor-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.tailor-title {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px !important;
}

.tailor-signature {
    margin-top: 30px;
}

.tailor-signature img {
    width: 150px;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: var(--dark-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.experience-badge span {
    font-size: 30px;
    line-height: 1;
}

.experience-badge p {
    font-size: 12px;
    margin: 0;
    text-align: center;
    color: var(--dark-color);
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: var(--primary-color);
    color: var(--white);
}

.newsletter .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    }
    
    .newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
    }
    
    .newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 14px;
    min-width: 200px;
    }
    
    .newsletter-form button {
    white-space: nowrap;
    }
    
    /* Footer Styles */
    .footer {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 60px 0 0;
    }
    
    .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    }
    
    .footer-logo img {
    width: 150px;
    margin-bottom: 20px;
    }
    
    .footer-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    }
    
    .social-links {
    display: flex;
    gap: 15px;
    }
    
    .social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    }
    
    .social-links a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    }
    
    .footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    }
    
    .footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    }
    
    .footer-col ul li {
    margin-bottom: 10px;
    }
    
    .footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    }
    
    .footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
    }
    
    .footer-col ul li i {
    font-size: 14px;
    }
    
    .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    }
    
    .payment-methods {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    }
    
    .payment-methods img {
    height: 25px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
    }
    
    .payment-methods img:hover {
    opacity: 1;
    }
    
    .copyright {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    }
    
    .legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    }
    
    .legal-links a {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    }
    
    .legal-links a:hover {
    color: var(--secondary-color);
    }
    
    /* WhatsApp Float Button */
    .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: var(--transition);
    }
    
    .whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
    }
    
    /* Animations */
    @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
    }
    
    .fade-in {
    animation: fadeIn 1s ease;
    }
    
    .slide-in-right {
    animation: slideInRight 1s ease;
    }
    
    @keyframes slideInRight {
    from {
    transform: translateX(100px);
    opacity: 0;
    }
    to {
    transform: translateX(0);
    opacity: 1;
    }
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
    .hero-content h2 {
    font-size: 36px;
    }
    
    .master-tailor .container {
        flex-direction: column;
    }
    
    .tailor-image {
        order: -1;
    }    

}

@media (max-width: 768px) {
.main-nav {
position: fixed;
top: 80px;
left: -100%;
width: 80%;
height: calc(100vh - 80px);
background: var(--white);
flex-direction: column;
padding: 30px;
transition: var(--transition);
z-index: 999;
}
.main-nav.active {
    left: 0;
}

.main-nav ul {
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-btn {
    display: block;
}

.nav-cta {
    display: none;
}

.hero {
    height: auto;
    padding: 100px 0;
}

.hero-content {
    text-align: center;
}

.hero-btns {
    justify-content: center;
}

.fabric-samples {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    margin-top: 40px;
}

.quick-booking {
    margin-top: 40px;
}

}

@media (max-width: 576px) {
.hero-content h2 {
font-size: 28px;
}

.hero-btns {
    flex-direction: column;
}

.section-header h2 {
    font-size: 28px;
}

.testimonial {
    padding: 20px;
}

.quote {
    font-size: 16px;
}
