/* ===================================
   Malmal Creations - Premium Design System
   =================================== */

:root {
    /* Premium Color Palette - Extracted from Logo */
    /* Deep Teal from logo text and peacock eyes (primary) */
    --primary-color: #0D7377;
    --primary-dark: #006B6B;
    --primary-light: #E0F2F3;
    /* Golden-brown from peacock (secondary) */
    --secondary-color: #D4A574;
    --accent-gold: #E6C99A;
    --accent-teal: #0D7377;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #F5E6D3;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;
    
    /* Gradients - Based on Logo Colors */
    --gradient-primary: linear-gradient(135deg, #0D7377 0%, #006B6B 100%);
    --gradient-secondary: linear-gradient(135deg, #D4A574 0%, #B8860B 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Roboto', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

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: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(26, 84, 144, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(26, 84, 144, 0.15);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.logo-img {
    height: 80px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: var(--primary-light);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(13, 115, 119, 0.3);
}

.nav-link.active::before {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(26, 84, 144, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(26, 84, 144, 0.1);
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    background: rgba(26, 84, 144, 0.1);
    border-color: rgba(26, 84, 144, 0.2);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

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

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    z-index: 1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
    transition: opacity 1s ease-in-out;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-image {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.hero-slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    animation: slideInUp 0.8s ease-out;
}

.hero-slide-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-slide-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(13, 115, 119, 0.4);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-slide-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-slide-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-slide-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13, 115, 119, 0.6);
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(13, 115, 119, 0.4);
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.5);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

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

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

.products-slider-wrapper {
    position: relative;
    overflow: visible;
}

.productsSwiper {
    width: 100%;
    padding: 0 2rem 5rem !important;
}

.productsSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.productsSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0 1rem;
    height: auto;
}

.productsSwiper .swiper-slide > div {
    width: 100%;
    height: 100%;
}

/* Product Card Styles - Similar to Skone's loan-card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Product Card Image - 3:4 Ratio */
.product-card-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 133.33%; /* 3:4 ratio - height is 4/3 of width (portrait orientation) */
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: #f8f9fa;
}

.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

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

/* Product Card Content */
.product-card-content {
    padding: 2.5rem;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80px;
}

.product-card-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.product-card-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    text-align: center;
    font-weight: 400;
}

/* Product Card Button */
.product-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
    align-self: center;
    margin-top: 0.5rem;
    border: 2px solid transparent;
}

.product-card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.product-card-btn:hover::before {
    width: 400px;
    height: 400px;
}

.product-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.5);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #D4A574 0%, #B8860B 50%, #D4A574 100%);
}

.product-card-btn i {
    transition: transform 0.3s ease;
    color: var(--white);
}

.product-card-btn:hover i {
    transform: translateX(5px);
}

/* Swiper Navigation - Similar to Skone's style */
.productsSwiper .swiper-button-next,
.productsSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.productsSwiper .swiper-button-next::after,
.productsSwiper .swiper-button-prev::after {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 900;
}

.productsSwiper .swiper-button-next:hover,
.productsSwiper .swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.productsSwiper .swiper-button-next:hover::after,
.productsSwiper .swiper-button-prev:hover::after {
    color: var(--white);
}

/* Swiper Pagination */
.productsSwiper .swiper-pagination {
    bottom: 0 !important;
}

.productsSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--light-gray);
    opacity: 1;
    transition: all 0.3s ease;
}

.productsSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

/* ===================================
   SECTION STYLES
   =================================== */

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    scroll-margin-top: 80px;
    overflow-x: hidden;
}

.section-alt {
    background: var(--off-white);
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px dashed var(--primary-dark);
    border-radius: 50px;
}

.section-subtitle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-subtitle {
    margin-bottom: 1rem;
}

.section-header .section-title {
    margin-bottom: 1rem;
}

.section-header .section-description {
    margin-bottom: 0;
}

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

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    overflow: visible;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-header {
    position: relative;
}

.about-header .section-subtitle {
    margin-bottom: 1rem;
}

.about-header .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-header .section-description {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 115, 119, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 115, 119, 0.15);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(13, 115, 119, 0.3);
}

.feature-icon-wrapper i {
    color: var(--white);
    font-size: 1.4rem;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.about-image-wrapper {
    position: relative;
    width: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-main-image {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
    transition: transform 0.4s ease;
}

.about-visual:hover .about-main-image {
    transform: scale(1.05);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(13, 115, 119, 0.15);
    border-color: var(--primary-color);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

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

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-info h4 {
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

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

.page-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('images/banner1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(50, 50, 50, 0.70) 50%, rgba(0, 0, 0, 0.75) 100%),
                radial-gradient(circle at 20% 30%, rgba(13, 115, 119, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.12) 0%, transparent 50%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--secondary-color);
    transform: translateX(-2px);
}

.breadcrumb-link i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    font-weight: 300;
}

.breadcrumb-current {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-wrapper {
    margin-top: 3rem;
}

/* Contact Info Cards Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 115, 119, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Contact Social Media Section */
.contact-social-section {
    margin: 3rem 0 4rem;
}

.contact-social-wrapper {
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.contact-social-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(13, 115, 119, 0.1);
}

.contact-social-wrapper h3 {
    font-size: 1.75rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-social-wrapper p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--light-gray);
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    min-width: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-social-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-social-icon span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(13, 115, 119, 0.15);
    background: var(--white);
}

.contact-social-icon:hover i {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.contact-social-icon:hover span {
    color: var(--primary-color);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-gray);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Form Styles */
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--off-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(13, 115, 119, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    min-height: 0;
}

.form-group.error .error-message {
    display: block;
}

.error-message:empty {
    display: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Form Consent Checkboxes */
.form-consent {
    margin: 2rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
}

.consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.consent-checkbox label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
    user-select: none;
}

.consent-checkbox:hover label {
    color: var(--primary-color);
}

.consent-checkbox.error input[type="checkbox"] {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

.consent-checkbox .error-message {
    position: absolute;
    bottom: -20px;
    left: 28px;
    font-size: 0.85rem;
    color: #e74c3c;
    display: block;
}

/* Form Actions */
.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 115, 119, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form Messages */
.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: none;
    align-items: center;
    gap: 1rem;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-message h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message p {
    margin: 0;
    font-size: 0.95rem;
}

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.success-message i {
    color: #28a745;
}

.error-message-box {
    background: #f8d7da;
    border: 2px solid #e74c3c;
    color: #721c24;
}

.error-message-box i {
    color: #e74c3c;
}

.character-counter {
    font-size: 0.875rem;
    color: #666;
    margin-top: 5px;
    text-align: right;
}

/* ===================================
   GALLERY SCROLL SECTION
   =================================== */

.gallery-scroll-section {
    position: relative;
    padding: 30px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    overflow: hidden;
}

.gallery-scroll-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Scrolling Images (Full Width) */
.gallery-scroll-images {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.images-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.images-row:last-child {
    margin-bottom: 0;
}

.images-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    align-items: center;
    padding: 30px 0;
}

.image-item {
    position: relative;
    width: 260px;
    height: 390px; /* 2:3 ratio - height is 3/2 of width */
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(13, 115, 119, 0.25);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Animation: Right to Left */
.images-track-rtl {
    animation: scrollRTL 40s linear infinite;
}

@keyframes scrollRTL {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Animation: Left to Right */
.images-track-ltr {
    animation: scrollLTR 40s linear infinite;
}

@keyframes scrollLTR {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

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

.footer-new {
    position: relative;
    width: 100%;
    margin-top: 20px;
    z-index: 1;
    animation: slideInUp 0.8s ease-out;
}

.footer-main {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #151515 70%, #0f0f0f 100%);
    border-radius: 60px 60px 0 0;
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(13, 115, 119, 0.08) 0%, transparent 50%), 
                radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer-main .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-img {
    height: 100px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.footer-social h5 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
    border-color: var(--secondary-color);
}

.social-icon i {
    color: #FFFFFF;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover i {
    color: #1a5490;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.footer-links-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-links-col ul li a:hover::after {
    width: 100%;
}

.footer-contact .contact-list li {
    display: flex;
    gap: 12px;
}

.contact-icon-svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact .contact-list li a,
.footer-contact .contact-list li span {
    word-break: break-word;
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact .contact-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-contact .contact-list li a:hover {
    color: var(--secondary-color);
}

.footer-contact .contact-list li a:hover::after {
    width: 100%;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    margin: 50px 0 30px 0;
}

.footer-credits {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    text-align: center;
}

.footer-credits p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 15px;
}

.footer-credits p a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credits p a:hover {
    color: var(--secondary-color);
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */

.singhal-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulseWhatsApp 2s infinite;
    text-decoration: none;
}

.singhal-whatsapp-float:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}

.singhal-whatsapp-float i {
    text-decoration: none;
    color: white;
    font-size: 28px;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #006B6B 0%, #0D7377 100%);
    box-shadow: 0 6px 20px rgba(13, 115, 119, 0.4);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   ABOUT US PAGE STYLES
   =================================== */

/* Our Story Section */
.about-story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text {
    display: flex;
    flex-direction: column;
}

.story-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    text-align: left;
}

/* Left align section headers in About Us page - Same as home page About section */
.about-story-content .section-header,
.craftsmanship-content .section-header {
    text-align: left;
    margin-bottom: 0.5rem;
}

.about-story-content .section-header .section-subtitle,
.craftsmanship-content .section-header .section-subtitle {
    margin-bottom: 1rem;
    display: inline-flex;
    justify-content: flex-start;
}

.about-story-content .section-header .section-title,
.craftsmanship-content .section-header .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-story-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image-wrapper {
    position: relative;
    width: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-main-image {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.story-image-wrapper:hover .story-main-image {
    transform: scale(1.05);
}

.story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
    pointer-events: none;
}

/* Mission & Vision Section */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mission-vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-vision-card:hover::before {
    transform: scaleX(1);
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 165, 116, 0.2);
    border-color: var(--secondary-color);
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mv-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mission-vision-card:hover .mv-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.mv-icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

.mv-card-title {
    font-size: 2rem;
    color: var(--dark-gray);
    font-weight: 700;
    margin: 0;
}

.mv-card-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(13, 115, 119, 0.15);
    border-color: var(--primary-color);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-secondary);
}

.value-icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

.value-title {
    font-size: 1.4rem;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
}

/* Craftsmanship Section */
.craftsmanship-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.craftsmanship-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.craft-image-wrapper {
    width: 80%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.craft-main-image {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.craft-image-wrapper:hover .craft-main-image {
    transform: scale(1.05);
}

.craft-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.craft-badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.craft-badge-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.craft-badge-text {
    display: flex;
    flex-direction: column;
}

.craft-badge-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.craft-badge-subtitle {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.craftsmanship-content {
    display: flex;
    flex-direction: column;
}

.craft-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    text-align: left;
}

.craft-features {
    display: flex;
    flex-direction: column;
    /* margin-top: 1rem; */
}

.craft-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.craft-feature-item:hover {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.1);
    transform: translateX(5px);
}

.craft-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.craft-feature-item span {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(13, 115, 119, 0.15);
    border-color: var(--primary-color);
}

.why-icon-box {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-icon-box {
    transform: scale(1.1) rotate(-5deg);
    background: var(--gradient-secondary);
}

.why-icon-box i {
    font-size: 1.8rem;
    color: var(--white);
}

.why-choose-item h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-choose-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
}

/* Collections Showcase Section */
.collections-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.collection-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.collection-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-item:hover .collection-image img {
    transform: scale(1.15);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 2rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.collection-item:hover .collection-overlay {
    transform: translateY(0);
}

.collection-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.collection-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.collections-cta {
    text-align: center;
    margin-top: 3rem;
}

.collections-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    border: 2px solid transparent;
}

.collections-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #D4A574 0%, #B8860B 50%, #D4A574 100%);
}

.collections-btn i {
    transition: transform 0.3s ease;
}

.collections-btn:hover i {
    transform: translateX(5px);
}

/* ===================================
   PRODUCTS PAGE STYLES
   =================================== */

/* Products Grid Page */
.products-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-page-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.product-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(13, 115, 119, 0.15);
    border-color: var(--primary-color);
}

/* Product Page Image Wrapper - 3:4 Ratio */
.product-page-image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 133.33%; /* 3:4 ratio */
    overflow: hidden;
    background: var(--off-white);
}

.product-page-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

/* Product Page Overlay */
.product-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.product-page-overlay-content {
    text-align: center;
    width: 100%;
}

.product-page-category {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.product-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    border: 2px solid transparent;
}

.product-page-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #D4A574 0%, #B8860B 50%, #D4A574 100%);
}

.product-page-btn i {
    transition: transform 0.3s ease;
}

.product-page-btn:hover i {
    transform: translateX(5px);
}

/* Product Page Content */
.product-page-content {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-page-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-page-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Products CTA Section */
.products-cta-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.products-cta-content {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.products-cta-content:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(13, 115, 119, 0.15);
}

.products-cta-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.products-cta-content:hover .products-cta-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-secondary);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.products-cta-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.products-cta-title {
    font-size: 2.5rem;
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1rem;
}

.products-cta-desc {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.products-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.products-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.products-cta-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.3);
}

.products-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 115, 119, 0.4);
    border-color: var(--primary-color);
}

.products-cta-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.1);
}

.products-cta-secondary:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(13, 115, 119, 0.3);
}

.products-cta-btn i {
    transition: transform 0.3s ease;
}

.products-cta-btn:hover i {
    transform: scale(1.1);
}

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

@media (max-width: 1200px) {
    
    .images-track {
        gap: 25px;
        padding: 25px 0;
    }
    
    .image-item {
        width: 230px;
        height: 345px; /* 2:3 ratio */
    }
}

@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        display: flex;
        flex-direction: column;
    }
    
    .about-visual {
        order: 1;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image-wrapper {
        width: 100%;
    }
    
    .about-main-image {
        min-height: 400px;
    }
    
    /* About Page - Tablet */
    .about-story-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-main-image,
    .craft-main-image {
        min-height: 400px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-card {
        padding: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .craftsmanship-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .collections-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .collection-item {
        height: 300px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .images-track {
        gap: 20px;
        padding: 20px 0;
    }
    
    .image-item {
        width: 200px;
        height: 300px; /* 2:3 ratio */
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Products Slider - Tablet */
    .productsSwiper {
        padding: 0 1.5rem 4rem !important;
    }
    
    .product-card-content {
        padding: 2rem;
    }
    
    .product-card-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.875rem;
    }
    
    .product-card-desc {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .product-card-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .productsSwiper .swiper-button-next,
    .productsSwiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    /* Products Page - Tablet */
    .products-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .products-cta-content {
        padding: 3rem 2.5rem;
    }
    
    .products-cta-icon {
        width: 90px;
        height: 90px;
    }
    
    .products-cta-icon i {
        font-size: 2.25rem;
    }
    
    .products-cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero-slider {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-slide-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-slide-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .hero-slide-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-slider-nav {
        display: none;
    }
    
    .hero-slider-prev,
    .hero-slider-next {
        display: none;
    }
    
    .hero-slider-dots {
        bottom: 20px;
    }
    
    .page-hero {
        min-height: 350px;
        padding: 150px 0 80px;
        background-attachment: scroll;
    }
    
    .page-hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb-nav {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.75rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* About Page - Mobile */
    .about-story-wrapper {
        gap: 2rem;
    }
    
    .story-paragraph {
        font-size: 1rem;
    }
    
    .story-main-image,
    .craft-main-image {
        min-height: 300px;
    }
    
    .mission-vision-card {
        padding: 2rem;
    }
    
    .mv-card-header {
        /* flex-direction: column; */
        text-align: center;
        gap: 1rem;
    }
    
    .mv-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .mv-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .mv-card-title {
        font-size: 1.75rem;
    }
    
    .mv-card-description {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .craftsmanship-wrapper {
        gap: 2rem;
    }
    
    .craft-badge {
        bottom: 15px;
        right: 15px;
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .craft-badge-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .craft-badge-icon i {
        font-size: 1.25rem;
    }
    
    .craft-badge-title {
        font-size: 0.9rem;
    }
    
    .craft-badge-subtitle {
        font-size: 0.75rem;
    }
    
    .craft-feature-item {
        padding: 0.875rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-item {
        padding: 2rem;
    }
    
    .collections-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .collection-item {
        height: 280px;
    }
    
    .collection-overlay {
        padding: 1.5rem;
    }
    
    .collection-overlay h3 {
        font-size: 1.3rem;
    }
    
    .collections-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Products Page - Mobile */
    .products-grid-page {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-page-card {
        max-width: 100%;
    }
    
    .product-page-content {
        padding: 1.5rem;
    }
    
    .product-page-title {
        font-size: 1.5rem;
    }
    
    .product-page-desc {
        font-size: 0.9rem;
    }
    
    .products-cta-content {
        padding: 2.5rem 2rem;
    }
    
    .products-cta-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .products-cta-icon i {
        font-size: 2rem;
    }
    
    .products-cta-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .products-cta-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .products-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .products-cta-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .contact-card-icon i {
        font-size: 1.5rem;
    }
    
    .contact-info-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    .contact-social-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-social-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .contact-social-icons {
        gap: 1rem;
    }
    
    .contact-social-icon {
        padding: 1rem 1.25rem;
        min-width: 90px;
    }
    
    .contact-social-icon i {
        font-size: 1.5rem;
    }
    
    .contact-social-icon span {
        font-size: 0.8rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .images-track {
        gap: 20px;
        padding: 20px 0;
    }
    
    .image-item {
        width: 170px;
        height: 255px; /* 2:3 ratio */
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 87px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 87px);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: var(--transition-normal);
        overflow-y: auto;
        gap: 0.5rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        justify-content: flex-start;
    }
    
    .nav-link.active {
        color: var(--white);
        background: var(--gradient-primary);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .menu-toggle.active span {
        background: var(--white);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.3rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .footer-main {
        border-radius: 30px 30px 0 0;
        padding: 50px 0 0;
    }
    
    .footer-company {
        padding-bottom: 30px;
        align-items: flex-start;
        text-align: left;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 20px;
    }
    
    .footer-separator {
        margin: 40px 0 25px 0;
    }
    
    .footer-credits {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-bottom: 30px;
    }
    
    .scroll-top {
        bottom: 100px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .singhal-whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .singhal-whatsapp-float i {
        font-size: 24px;
    }
    
    /* Products Slider - Mobile */
    .products-slider-wrapper {
        margin-top: 2rem;
    }
    
    .productsSwiper {
        padding: 0 0 6rem !important;
    }
    
    .product-card-content {
        padding: 1.5rem;
    }
    
    .product-card-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .product-card-desc {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .product-card-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .productsSwiper .swiper-button-next,
    .productsSwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
        top: auto;
        bottom: 10px;
        margin-top: 0;
    }
    
    .productsSwiper .swiper-button-prev {
        left: 50%;
        transform: translateX(-65px);
    }
    
    .productsSwiper .swiper-button-next {
        right: 50%;
        transform: translateX(65px);
    }
    
    .productsSwiper .swiper-button-prev:hover {
        transform: translateX(-65px) scale(1.1);
    }
    
    .productsSwiper .swiper-button-next:hover {
        transform: translateX(65px) scale(1.1);
    }
    
    .productsSwiper .swiper-button-next::after,
    .productsSwiper .swiper-button-prev::after {
        font-size: 1.1rem;
    }
    
    /* Hide pagination on mobile */
    .productsSwiper .swiper-pagination {
        display: none !important;
    }
}

@media (max-width: 480px) {
    
    .section {
        padding: 3rem 0;
    }
    
    .page-hero {
        min-height: 300px;
        padding: 120px 0 60px;
    }
    
    .page-hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .breadcrumb-nav {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        gap: 0.75rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
    }
    
    /* About Page - Extra Small Mobile */
    .about-story-wrapper {
        gap: 1.5rem;
    }
    
    .story-paragraph {
        font-size: 0.95rem;
    }
    
    .story-main-image,
    .craft-main-image {
        min-height: 250px;
    }
    
    .mission-vision-card {
        padding: 1.5rem;
    }
    
    .mv-card-title {
        font-size: 1.5rem;
    }
    
    .mv-card-description {
        font-size: 0.95rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .value-icon-wrapper i {
        font-size: 1.75rem;
    }
    
    .value-title {
        font-size: 1.25rem;
    }
    
    .craft-badge {
        bottom: 10px;
        right: 10px;
        padding: 0.75rem;
    }
    
    .craft-badge-icon {
        width: 45px;
        height: 45px;
    }
    
    .craft-badge-icon i {
        font-size: 1.1rem;
    }
    
    .craft-badge-title {
        font-size: 0.85rem;
    }
    
    .craft-badge-subtitle {
        font-size: 0.7rem;
    }
    
    .craft-description {
        font-size: 0.95rem;
    }
    
    .why-choose-item {
        padding: 1.5rem;
    }
    
    .why-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .why-icon-box i {
        font-size: 1.5rem;
    }
    
    .why-choose-item h3 {
        font-size: 1.2rem;
    }
    
    .collection-item {
        height: 250px;
    }
    
    .collection-overlay {
        padding: 1.25rem;
    }
    
    .collection-overlay h3 {
        font-size: 1.2rem;
    }
    
    .collection-overlay p {
        font-size: 0.9rem;
    }
    
    .collections-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    /* Products Page - Extra Small Mobile */
    .products-grid-page {
        gap: 1.5rem;
    }
    
    .product-page-content {
        padding: 1.25rem;
    }
    
    .product-page-title {
        font-size: 1.4rem;
    }
    
    .product-page-desc {
        font-size: 0.85rem;
    }
    
    .product-page-overlay {
        padding: 1.5rem;
    }
    
    .product-page-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .products-cta-content {
        padding: 2rem 1.5rem;
    }
    
    .products-cta-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .products-cta-icon i {
        font-size: 1.75rem;
    }
    
    .products-cta-title {
        font-size: 1.5rem;
    }
    
    .products-cta-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .products-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-card-icon i {
        font-size: 1.4rem;
    }
    
    .contact-social-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .contact-social-wrapper h3 {
        font-size: 1.3rem;
    }
    
    .contact-social-wrapper p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-social-icons {
        gap: 0.75rem;
    }
    
    .contact-social-icon {
        padding: 0.875rem 1rem;
        min-width: 80px;
    }
    
    .contact-social-icon i {
        font-size: 1.3rem;
    }
    
    .contact-social-icon span {
        font-size: 0.75rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form-header {
        margin-bottom: 2rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-form-header p {
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-message {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }
    
    .form-message i {
        font-size: 1.75rem;
    }
    
    .form-message h4 {
        font-size: 1rem;
    }
    
    .form-message p {
        font-size: 0.9rem;
    }
    
    .form-consent {
        margin: 1.5rem 0 1rem;
        gap: 0.875rem;
    }
    
    .consent-checkbox {
        gap: 0.625rem;
    }
    
    .consent-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        min-width: 18px;
        margin-top: 3px;
    }
    
    .consent-checkbox label {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .consent-checkbox .error-message {
        bottom: -18px;
        left: 26px;
        font-size: 0.8rem;
    }
    
    .images-track {
        gap: 15px;
        padding: 15px 0;
    }
    
    .image-item {
        width: 140px;
        height: 210px; /* 2:3 ratio */
    }
    
    .footer-tagline {
        font-size: 14px;
    }
    
    .footer-desc {
        font-size: 14px;
    }
}

