/* ============================================
   CSS VARIABLES & ROOT STYLES - TEXTILE SHOWROOM THEME
   ============================================ */

:root {
    /* Textile Showroom Color Palette - Warm, Artistic, Elegant */
    --primary-color: #c17a5c;
    /* Warm Terracotta - Like natural dyed fabrics */
    --primary-dark: #9d5d43;
    /* Deep Clay */
    --secondary-color: #d4a574;
    /* Golden Sand - Like silk threads */
    --accent-color: #8b7355;
    /* Warm Taupe - Earthy textile tones */
    --success-color: #7a9b76;
    /* Sage Green - Natural dyes */
    --danger-color: #c85a54;
    /* Soft Rust */
    --warning-color: #d4a574;
    /* Warm Gold */

    /* Artistic Accent Colors */
    --fabric-cream: #f5f1e8;
    /* Soft cream like cotton */
    --fabric-beige: #e8dcc8;
    /* Natural beige */
    --fabric-gold: #d4af37;
    /* Elegant gold thread */
    --fabric-burgundy: #8b4049;
    /* Rich wine like velvet */

    /* Neutral Colors - Warm Tones */
    --text-primary: #3d2f2a;
    /* Deep brown instead of black */
    --text-secondary: #6b5d57;
    /* Warm gray */
    --text-light: #9d8b82;
    /* Light taupe */
    --bg-primary: #fdfbf7;
    /* Warm white (cream) */
    --bg-secondary: #f5f1e8;
    /* Soft cream */
    --bg-tertiary: #ebe5d9;
    /* Light beige */
    --border-color: #d9cfc0;
    /* Warm border */

    /* Dark Mode Colors - Warm Dark Tones */
    --dark-bg-primary: #2a2420;
    /* Deep warm brown */
    --dark-bg-secondary: #3d342e;
    /* Rich chocolate */
    --dark-bg-tertiary: #4d4139;
    /* Warm charcoal */
    --dark-text-primary: #f5f1e8;
    /* Cream */
    --dark-text-secondary: #d9cfc0;
    /* Light beige */
    --dark-border-color: #4d4139;
    /* Warm border */

    /* Gradients - Warm & Artistic */
    --gradient-primary: linear-gradient(135deg, #c17a5c 0%, #9d5d43 100%);
    /* Terracotta to Clay */
    --gradient-secondary: linear-gradient(135deg, #d4a574 0%, #8b7355 100%);
    /* Golden Sand to Warm Taupe */
    --gradient-warm: linear-gradient(135deg, #d4a574 0%, #c17a5c 100%);
    /* Golden Sand to Terracotta */
    --gradient-cool: linear-gradient(135deg, #7a9b76 0%, #8b7355 100%);
    /* Sage Green to Warm Taupe */

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Spacing */
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Typography - Elegant & Artistic */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Variables - Warm Tones */
[data-theme="dark"] {
    --text-primary: var(--dark-text-primary);
    --text-secondary: var(--dark-text-secondary);
    --text-light: #9d8b82;
    --bg-primary: var(--dark-bg-primary);
    --bg-secondary: var(--dark-bg-secondary);
    --bg-tertiary: var(--dark-bg-tertiary);
    --border-color: var(--dark-border-color);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-base), color var(--transition-base);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: all var(--transition-base);
}

[data-theme="dark"] .navbar {
    background: rgba(17, 24, 39, 0.95);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 1.8rem;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ============================================
   DARK MODE TOGGLE
   ============================================ */

.dark-mode-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all var(--transition-base);
}

.dark-mode-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider {
    margin-top: 76px;
    height: 70vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 900px;
    padding: 2rem;
    background: rgba(139, 69, 19, 0.15);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-caption-custom h1 {
    font-family: var(--font-display);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.2;
}

.carousel-caption-custom p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    line-height: 1.6;
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

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

.hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: var(--bg-secondary);
}

.section-title-large {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}


.hero-slider {
    height: 60vh;
    position: relative;
}

#productCarousel,
#productCarousel .carousel-inner,
#productCarousel .carousel-item {
    height: 100%;
}

.hero-slider {
    margin-top: -58px !important;
}

.carousel-image {
    height: 100%;
    background-size: cover;
    background-position: center;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    text-align: center;
}

[data-theme="dark"] .floating-badge {
    background: var(--bg-secondary);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--bg-primary);
}

#about h2.section-title {
    color: #000;
}



.feature-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    text-align: center;
}

[data-theme="dark"] .feature-card {
    background: var(--bg-secondary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Feature card animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.about-content-box {
    background: var(--gradient-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    color: white;
    box-shadow: var(--shadow-xl);
}

.about-content-box p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
    background: var(--bg-secondary);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg01.png');
    background-size: 300px 300px;
    background-repeat: repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.product-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-md) 0;
}

.product-slider {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: var(--spacing-md);
    scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 320px;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

[data-theme="dark"] .product-card {
    background: var(--bg-secondary);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Always visible zoom indicator */
.product-image::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all var(--transition-base);
    pointer-events: none;
    z-index: 2;
}

.product-card:hover .product-image::after {
    opacity: 1;
    transform: scale(1.1);
    background: white;
}

.product-info {
    padding: var(--spacing-md);
}

.product-info h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.product-info p {
    color: var(--text-secondary);
    margin: 0;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-primary);
}

[data-theme="dark"] .slider-control {
    background: var(--bg-secondary);
}

.slider-control:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.slider-control.prev {
    left: 10px;
}

.slider-control.next {
    right: 10px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-us-section {
    background: var(--bg-primary);
}

.why-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    text-align: center;
    border: 2px solid transparent;
}

[data-theme="dark"] .why-card {
    background: var(--bg-secondary);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.why-card:nth-child(2) .why-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.why-card:nth-child(3) .why-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.why-card:nth-child(4) .why-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.why-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.why-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Why card animation */
.why-card {
    animation: fadeInScale 0.7s ease-out;
    animation-fill-mode: both;
}

.why-card:nth-child(1) {
    animation-delay: 0.1s;
}

.why-card:nth-child(2) {
    animation-delay: 0.2s;
}

.why-card:nth-child(3) {
    animation-delay: 0.3s;
}

.why-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Icon rotation on hover */
.why-icon {
    transition: transform var(--transition-base);
}

.why-card:hover .why-icon {
    transform: rotate(360deg);
}

/* ============================================
   ENQUIRY SECTION
   ============================================ */

.enquiry-section {
    background: var(--bg-secondary);
    position: relative;
}

.enquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.enquiry-form-wrapper {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

[data-theme="dark"] .enquiry-form-wrapper {
    background: var(--bg-secondary);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.thank-you-message {
    text-align: center;
    padding: var(--spacing-2xl);
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: var(--spacing-md);
}

.thank-you-message h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.thank-you-message p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--bg-primary);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

[data-theme="dark"] .contact-info-item {
    background: var(--bg-secondary);
}

.contact-info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

/* Contact item animation */
.contact-info-item {
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.contact-info-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-info-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-details a {
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
}

.map-wrapper iframe {
    min-height: 400px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-secondary);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid #e5e7eb;
}

[data-theme="dark"] .footer {
    border-top-color: var(--bg-tertiary);
}

.footer p {
    margin: 0;
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-caption-custom h1 {
        font-size: 2rem;
    }

    .carousel-caption-custom p {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .floating-badge {
        bottom: 10px;
        right: 10px;
        padding: var(--spacing-sm);
    }

    .badge-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    section {
        padding: var(--spacing-xl) 0;
    }

    .hero-section {
        padding: var(--spacing-xl) 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-card {
        min-width: 280px;
    }

    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .dark-mode-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 80px;
        right: 20px;
    }

    .enquiry-form-wrapper {
        padding: var(--spacing-lg);
    }

    /* Fix floating buttons on mobile to prevent horizontal scroll */
    .whatsapp-float {
        right: 15px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .back-to-top {
        right: 15px;
        bottom: 80px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .dark-mode-toggle {
        right: 15px;
        top: 80px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    background: var(--bg-primary);
    padding: var(--spacing-2xl) 0;
}

.testimonial-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

[data-theme="dark"] .testimonial-card {
    background: var(--bg-secondary);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.testimonial-stars {
    margin-bottom: var(--spacing-md);
    color: #fbbf24;
    font-size: 1.5rem;
}

.testimonial-stars i {
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.testimonial-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all var(--transition-base);
}

[data-theme="dark"] .testimonial-control {
    background: var(--bg-secondary);
}

.testimonial-control:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.testimonial-indicators {
    position: relative;
    margin-top: var(--spacing-xl);
}

.testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.5;
    transition: all var(--transition-base);
}

.testimonial-indicators button.active {
    opacity: 1;
    transform: scale(1.3);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background: var(--bg-secondary);
    padding: var(--spacing-2xl) 0;
}

.faq-item {
    background: white;
    border: none;
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

[data-theme="dark"] .faq-item {
    background: var(--bg-secondary);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

.accordion-button:not(.collapsed) i {
    color: white;
}

.accordion-button i {
    color: var(--primary-color);
    transition: all var(--transition-base);
}

.accordion-button::after {
    background-image: none;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
    transition: transform var(--transition-base);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-cta {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .faq-cta {
    background: var(--bg-secondary);
}

.faq-cta .lead {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   SOCIAL MEDIA LINKS
   ============================================ */

.social-links {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.social-links a:nth-child(1):hover {
    background: #1877f2;
    color: white;
}

.social-links a:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-links a:nth-child(3):hover {
    background: #0077b5;
    color: white;
}

.social-links a:nth-child(4):hover {
    background: #1da1f2;
    color: white;
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 100px;
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-size: 1000px 100%;
}

/* Print styles */
@media print {

    .navbar,
    .whatsapp-float,
    .dark-mode-toggle,
    .slider-control {
        display: none;
    }
}