/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF9900; /* Amazon orange */
    --secondary-color: #007185; /* Amazon blue */
    --accent-color: #E47911; /* Amazon orange hover */
    --text-dark: #000000; /* Black text */
    --text-light: #6b7280; /* Light gray */
    --white: #ffffff; /* White */
    --light-gray: #f9fafb; /* Light gray background */
    --border-color: #DDD; /* Light border */
    --navbar-bg: #232F3E; /* Amazon navbar gray */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Header */
.header {
    background-color: var(--navbar-bg);
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
    margin: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 2rem;
}

.nav-brand h2 {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 1.8rem;
    line-height: 1.2;
}

.nav-brand .tagline {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 2px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--primery-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--secondary-color);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 2rem;
}

.nav-whatsapp-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
    border-radius: 20px;
    white-space: nowrap;
}

.nav-contact-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.nav-contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.lang-toggle {
    background: none;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.lang-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(30, 58, 138, 0.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    margin-left: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-brand .logo {
    width: 180px;
    height: auto;
    display: block;
    margin-bottom: 0.25rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Creative hero (replaces old slider) */
.creative-hero {
    background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 153, 0, 0.15), transparent),
                radial-gradient(1200px 600px at 90% 90%, rgba(0, 113, 133, 0.15), transparent),
                linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: var(--text-dark);
}

.creative-hero-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" viewBox="0 0 800 600"><g fill="none" stroke="%23e5e7eb" stroke-opacity="0.5"><path d="M0 500 C200 300 600 700 800 500"/><path d="M0 420 C250 220 550 620 800 420"/></g></svg>') center/cover no-repeat;
    opacity: 0.6;
    pointer-events: none;
}

.creative-hero .container { height: 100%; display: flex; align-items: center; }

.creative-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    width: 100%;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

/* Hero typing heading */
.hero-heading .static-part { color: var(--text-dark); font-weight: 700; }
.hero-heading .typing { display: inline-flex; align-items: center; }
.hero-heading .hero-dynamic { color: var(--primary-color); font-weight: 700; min-height: 1.2em; font-size: 40px; }
.type-cursor { margin-left: 6px; color: var(--primary-color); font-weight: 400; animation: blink 1s steps(1) infinite; }
@keyframes blink { 0%,50% { opacity: 1; } 50.1%,100% { opacity: 0; } }

.hero-copy .lead { font-size: 1.15rem; color: var(--text-light); margin-bottom: 1.5rem; }

.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; padding: 6px 12px; border-radius: 999px; background: #fff3e6; color: #8a4b00; font-weight: 600; margin-bottom: 1rem; box-shadow: var(--shadow); }

.gradient-text { background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.underline-swish { position: relative; display: inline-block; }
.underline-swish::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 10px; background: linear-gradient(90deg, rgba(255,153,0,.4), rgba(0,113,133,.4)); border-radius: 999px; filter: blur(6px); }

.trust-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.trust-chip { background: var(--light-gray); border: 1px solid var(--border-color); padding: 6px 12px; border-radius: 999px; font-size: .9rem; color: var(--text-dark); }

.hero-visual { position: relative; }
.hero-photo { position: relative; border-radius: 18px; overflow: visible; box-shadow: 0 20px 60px rgba(0,0,0,.15); background: #fff; }
.hero-photo img { display: block; width: 100%; height: auto; border-radius: 18px; position: relative; z-index: 1; }

@media (max-width: 767px) {
    .hero-visual {
        overflow: visible;
        padding: 0.5rem;
    }
    .hero-photo {
        overflow: visible;
    }
    .floating-badge {
        max-width: calc(100% - 20px);
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.floating-badge { position: absolute; background: #ffffff; border: 1px solid var(--border-color); box-shadow: var(--shadow-lg); padding: 8px 12px; border-radius: 999px; font-size: .85rem; display: inline-flex; gap: .5rem; align-items: center; z-index: 2; pointer-events: none; will-change: transform; transform: translateY(var(--pY, 0)); animation: bob 6s ease-in-out infinite; }
.badge-1 { top: 8%; left: -10%; }
.badge-2 { bottom: 12%; right: -10%; }
.badge-3 { top: 45%; right: -8%; }
.badge-4 { bottom: 40%; left: -12%; }
.badge-5 { top: 14%; right: 6%; }
.badge-6 { bottom: 4%; left: 6%; }
.badge-7 { top: 74%; right: -6%; }
.badge-8 { top: -5%; right: 28%; }

@keyframes bob {
    0%,100% { transform: translateY(calc(var(--pY, 0) + 0px)); }
    50% { transform: translateY(calc(var(--pY, 0) - 8px)); }
}

.scroll-cue { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--primary-color); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); cursor: pointer; animation: bounceY 2.2s infinite; }

@keyframes bounceY {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

/* Reuse existing .hero-cta styles but left align on desktop */
.creative-hero .hero-cta { justify-content: flex-start; }

/* Responsive */
@media (max-width: 992px) {
    .creative-hero-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .creative-hero .hero-cta { justify-content: center; }
    .hero-copy h1 { text-align: center; }
    .hero-copy .lead, .trust-row { text-align: center; justify-content: center; }
    .hero-visual { max-width: 520px; margin: 2rem auto 0; }
    .badge-1 { top: 4%; left: 2%; }
    .badge-2 { bottom: 6%; right: 4%; }
    .badge-3 { top: 38%; right: 2%; }
    .badge-4 { bottom: 38%; left: 2%; }
    .badge-5 { top: 8%; right: 8%; }
    .badge-6 { bottom: 2%; left: 8%; }
    .badge-7 { top: 70%; right: 2%; }
    .badge-8 { top: -4%; right: 30%; }
}

@media (max-width: 767px) {
    .creative-hero .container { 
        height: auto; 
        padding: 2rem 0;
    }
    .hero { 
        height: auto; 
        min-height: auto;
        padding: 2rem 0 3rem;
        overflow: visible;
    }
    .creative-hero-grid { 
        gap: 2rem;
    }
    .hero-copy {
        text-align: center;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    .hero-copy h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    .hero-heading .hero-dynamic {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .hero-copy .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    .eyebrow { 
        font-size: .8rem; 
        padding: 5px 10px;
        margin-bottom: 0.75rem;
    }
    .creative-hero .hero-cta { 
        flex-direction: column; 
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        align-items: center;
    }
    .creative-hero .hero-cta .btn { 
        width: 100%; 
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    .trust-row { 
        gap: 0.5rem;
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    .trust-chip {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    .hero-visual { 
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
        position: relative;
    }
    .hero-photo {
        overflow: hidden;
        margin: 0 auto;
    }
    .hero-photo img { 
        max-height: 350px; 
        object-fit: cover;
        width: 100%;
    }
    .floating-badge { 
        font-size: .7rem; 
        padding: 5px 8px;
        white-space: nowrap;
    }
    .badge-1 { top: 5%; left: 2%; }
    .badge-2 { bottom: 5%; right: 2%; }
    .badge-3 { top: 35%; right: 2%; }
    .badge-4 { bottom: 35%; left: 2%; }
    .badge-5 { display: none; }
    .badge-6 { bottom: 2%; left: 2%; }
    .badge-7 { display: none; }
    .badge-8 { display: none; }
    .scroll-cue { 
        display: none;
    }
}

@media (max-width: 480px) {
    .hero { 
        padding: 1.5rem 0 2.5rem;
    }
    .creative-hero .container {
        padding: 1.5rem 0;
    }
    .hero-copy {
        padding: 0 0.75rem;
        margin-bottom: 1.5rem;
    }
    .hero-copy h1 {
        font-size: clamp(1.3rem, 7vw, 2rem);
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    .hero-heading .hero-dynamic {
        font-size: clamp(0rem, 3vw, 3rem);
    }
    .hero-copy .lead {
        font-size: 0.7rem;
        margin-bottom: 1.25rem;
        padding: 0;
    }
    .eyebrow {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    .creative-hero .hero-cta {
        gap: 0.6rem;
        margin-bottom: 1.25rem;
    }
    .creative-hero .hero-cta .btn {
        max-width: 80%;
        padding: 6px 10px;
        font-size: 0.7rem;
        margin-top: 1px;
    }
    .trust-row {
        gap: 0.4rem;
        margin-top: 0.75rem;
    }
    .trust-chip {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    .hero-visual { 
        max-width: 100%;
        padding: 0 0.75rem;
    }
    .hero-photo img { 
        max-height: 300px;
    }
    .floating-badge { 
        transform: translateY(var(--pY, 0)) scale(0.8);
        font-size: 0.65rem;
        padding: 4px 7px;
    }
    .badge-5, .badge-7, .badge-8 { 
        display: none; 
    }
    .badge-1 { top: 3%; left: 3%; }
    .badge-2 { bottom: 3%; right: 3%; }
    .badge-3 { top: 32%; right: 3%; }
    .badge-4 { bottom: 32%; left: 3%; }
    .badge-6 { bottom: 1%; left: 3%; }
}

/* Mobile Responsive Styles for Other Sections */
@media (max-width: 767px) {
    /* Uniform Respect Section */
    .uniform-respect {
        padding: 3rem 0;
    }
    
    .respect-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .respect-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .respect-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .respect-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .respect-feature {
        padding: 0.75rem;
    }
    
    .uniform-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .uniform-icon {
        padding: 1rem;
    }
    
    .uniform-icon i {
        font-size: 1.5rem;
    }
    
    .respect-quote {
        padding: 1.5rem;
    }
    
    .respect-quote blockquote {
        font-size: 1rem;
    }
    
    /* Why Choose Us Section */
    .why-choose-us {
        padding: 3rem 0 !important;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .why-choose-item {
        padding: 2rem 1.5rem !important;
    }
    
    .why-choose-icon {
        font-size: 40px !important;
        margin-bottom: 1rem !important;
    }
    
    .why-choose-item h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .why-choose-item p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* Kids Wear Section */
    .kids-wear {
        padding: 3rem 0 !important;
    }
    
    .kids-wear-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .kids-wear-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .kids-wear-content p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .kids-wear-image {
        order: -1;
    }
    
    /* Highlights Section */
    .highlights {
        padding: 3rem 0;
    }
    
    /* Categories Section */
    .categories {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Testimonials Section */
    .testimonials {
        padding: 3rem 0;
    }
    
    /* CTA Section */
    .cta {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    /* Uniform Respect Section */
    .uniform-respect {
        padding: 2.5rem 0;
    }
    
    .respect-content {
        gap: 2rem;
    }
    
    .respect-text h2 {
        font-size: 1.5rem;
    }
    
    .respect-text p {
        font-size: 0.95rem;
    }
    
    .respect-features {
        gap: 0.75rem;
    }
    
    .respect-feature {
        padding: 0.6rem;
    }
    
    .respect-feature i {
        font-size: 1.2rem;
    }
    
    .uniform-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .uniform-icon {
        padding: 0.75rem;
    }
    
    .uniform-icon i {
        font-size: 1.3rem;
    }
    
    .uniform-icon span {
        font-size: 0.8rem;
    }
    
    .respect-quote {
        padding: 1.25rem;
    }
    
    .respect-quote blockquote {
        font-size: 0.95rem;
    }
    
    /* Why Choose Us Section */
    .why-choose-us {
        padding: 2.5rem 0 !important;
    }
    
    .why-choose-grid {
        gap: 1.25rem !important;
        margin-top: 1.5rem !important;
    }
    
    .why-choose-item {
        padding: 1.5rem 1.25rem !important;
    }
    
    .why-choose-icon {
        font-size: 36px !important;
    }
    
    .why-choose-item h3 {
        font-size: 1.1rem !important;
    }
    
    .why-choose-item p {
        font-size: 0.9rem !important;
    }
    
    /* Kids Wear Section */
    .kids-wear {
        padding: 2.5rem 0 !important;
    }
    
    .kids-wear-grid {
        gap: 1.5rem !important;
    }
    
    .kids-wear-content h2 {
        font-size: 1.5rem !important;
    }
    
    .kids-wear-content p {
        font-size: 0.95rem !important;
    }
    
    .kids-wear-content .btn {
        font-size: 0.95rem !important;
        padding: 12px 24px !important;
    }
    
    /* Highlights Section */
    .highlights {
        padding: 2.5rem 0;
    }
    
    /* Categories Section */
    .categories {
        padding: 2.5rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Testimonials Section */
    .testimonials {
        padding: 2.5rem 0;
    }
    
    /* CTA Section */
    .cta {
        padding: 2.5rem 0;
    }
}

/* Highlights Section */
.highlights {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.highlight-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Categories Section */
.categories {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(251, 191, 36, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-content ul {
    list-style: none;
    margin-top: 1rem;
}

.category-content li {
    padding: 0.25rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1rem;
}

.category-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Clients Section */
.clients {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-logo {
    text-align: center;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.client-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    opacity: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    position: relative;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-testimonial,
.next-testimonial {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: var(--light-gray);
}

.cta .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--navbar-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Footer Branches Grid */
.footer-branches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 1rem;
}

.footer-branch-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.footer-branch-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-branch-card h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-branch-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-branch-card .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 15px;
}

/* Uniform Respect Section */
.uniform-respect {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    position: relative;
    overflow: hidden;
}

.uniform-respect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.respect-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.respect-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.respect-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.respect-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.respect-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.respect-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.respect-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.respect-feature i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 30px;
    text-align: center;
}

.respect-feature span {
    font-weight: 600;
    color: var(--primary-color);
}

.respect-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.uniform-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.uniform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.uniform-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: var(--transition);
}

.uniform-icon:hover::before {
    left: 100%;
}

.uniform-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.uniform-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.uniform-icon:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.uniform-icon span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.respect-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.respect-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: serif;
}

.respect-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.respect-quote cite {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-chat a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
}

.whatsapp-chat a:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
}

.whatsapp-chat a:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 75px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Page Header */
.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(251, 191, 36, 0.6));
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: var(--secondary-color);
    font-weight: 500;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Brand Story Section */
.brand-story {
    padding: 5rem 0;
    background-color: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text .section-header {
    margin-bottom: 2rem;
}

.story-paragraphs .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-paragraphs p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.story-images .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.image-item.large {
    grid-row: span 2;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-item:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Timeline Section */
.timeline {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.timeline-item.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 3rem;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.timeline-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-content p {
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.value-card:hover::before {
    left: 0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    line-height: 1.6;
}

/* Leadership Section */
.leadership {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.leader-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.leader-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(251, 191, 36, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.leader-info {
    padding: 2rem;
    text-align: center;
}

.leader-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.leader-position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-bio {
    line-height: 1.6;
    color: var(--text-light);
}

/* Certifications Section */
.certifications {
    padding: 5rem 0;
    background-color: var(--white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cert-image {
    margin-bottom: 1rem;
}

.cert-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.cert-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cert-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Notification System */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    max-width: 400px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 1001;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-info {
    border-left: 4px solid var(--primary-color);
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
    margin-left: 1rem;
}

.notification-close:hover {
    color: var(--text-dark);
}

/* Form Error Styles */
.field-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

input.error,
textarea.error,
select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Gallery Page Styles */
.gallery-section {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-info {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gallery-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.gallery-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    flex: 1;
}

.gallery-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-actions .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}

.modal-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.quick-contact {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-main {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.map-section {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-container {
    margin-bottom: 2rem;
}

.map-container iframe {
    border-radius: 8px;
}

.hq-info {
    padding: 2rem;
}

.hq-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.info-item i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

/* Social Connect */
.social-connect {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.social-card.whatsapp:hover {
    background: #25d366;
    color: var(--white);
}

.social-card.facebook:hover {
    background: #1877f2;
    color: var(--white);
}

.social-card.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}

.social-card.linkedin:hover {
    background: #0077b5;
    color: var(--white);
}

.social-card .social-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--light-gray);
    color: var(--primary-color);
    transition: var(--transition);
}

.social-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-cta {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Branches */
.branches {
    padding: 5rem 0;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.branch-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.branch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.branch-header h3 {
    color: var(--primary-color);
    margin-bottom: 0;
}

.branch-badge {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.branch-info {
    margin-bottom: 2rem;
}

.branch-actions {
    display: flex;
    gap: 1rem;
}

.branch-actions .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.9rem;
}

/* Fabric & Quality Page Styles */
.fabric-swatches {
    padding: 5rem 0;
}

.swatches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.swatch-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.swatch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.swatch-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.swatch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swatch-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.swatch-info {
    padding: 2rem;
}

.swatch-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fabric-properties {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.property {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-gray);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.property i {
    color: var(--secondary-color);
}

.certifications-strip {
    padding: 3rem 0;
    background-color: var(--light-gray);
}

.certifications-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-badge {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cert-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cert-badge img {
    margin-bottom: 1rem;
    border-radius: 6px;
}

.cert-badge h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cert-badge p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.durability-section {
    padding: 5rem 0;
}

.durability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.durability-features {
    display: grid;
    gap: 1.5rem;
}

.durability-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.durability-feature:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.feature-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    margin: 0;
    font-size: 0.9rem;
}

/* Compare Slider */
.compare-slider {
    text-align: center;
}

.compare-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.compare-image {
    position: relative;
    height: 300px;
}

.compare-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-image.after {
    position: absolute;
    top: 0;
    left: 0;
    clip-path: inset(0 50% 0 0);
}

/* Blog Page Styles */

/* Featured Article */
.featured-article {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.featured-text .article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-date,
.article-category {
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-category {
    color: var(--secondary-color);
    font-weight: 600;
}

.featured-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.featured-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Recent Articles */
.recent-articles {
    padding: 5rem 0;
    background-color: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content {
    padding: 2rem;
}

.article-content .article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Videos Section */
.videos-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.play-button:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.video-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Blog Testimonials */
.blog-testimonials {
    padding: 5rem 0;
    background-color: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    margin: 0 1rem;
}

.testimonial.active {
    display: block;
}

.testimonial .stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-testimonial,
.next-testimonial {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.newsletter .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.newsletter .form-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 1rem;
}

.newsletter .form-group input::placeholder {
    color: var(--text-light);
}

.newsletter .form-group input:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter .btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    white-space: nowrap;
}

.newsletter .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.newsletter .btn-primary:hover {
    background: transparent;
    color: var(--white);
}

/* ========================================
   PRODUCTS PAGE STYLES - ELEVEN CSS STYLES
   ======================================== */

/* 1. Product Categories Navigation */
.product-categories-nav {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 80px;
    z-index: 100;
    overflow-x: hidden;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-tab:hover::before {
    left: 100%;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* 2. Product Sections */
.product-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e5e7eb" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.5;
    z-index: 1;
}

/* .school-uniforms {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.corporate-wear {
    background: linear-gradient(135deg, #fefce8, #fef3c7);
}

.industrial-workwear {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.kids-wear {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
} */

/* 3. Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 4. Product Images */
.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(251, 191, 36, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

/* 5. Product Information */
.product-info {
    padding: 2rem;
    position: relative;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-actions .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* 6. Product Features Section */
.product-features-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.product-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 49%, var(--light-gray) 50%, transparent 51%);
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* 7. Product Specifications */
.product-specifications {
    padding: 5rem 0;
    background: var(--light-gray);
}

.specs-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.spec-tab {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.spec-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.spec-tab:hover,
.spec-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.spec-tab.active::after {
    width: 80%;
}

.specs-content {
    position: relative;
}

.spec-panel {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.spec-panel.active {
    display: block;
}

.spec-panel h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

/* 8. Materials Grid */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.material-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.material-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.material-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}


/* 11. Customization Options */
.customization-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.custom-option {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.custom-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.5s ease;
}

.custom-option:hover::before {
    left: 100%;
}

.custom-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.custom-option i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.custom-option:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.custom-option h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Product Testimonials */
.product-testimonials {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.product-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="quotes" width="40" height="40" patternUnits="userSpaceOnUse"><text x="20" y="25" font-family="serif" font-size="20" fill="%23e5e7eb" opacity="0.3">"</text></pattern></defs><rect width="100" height="100" fill="url(%23quotes)"/></svg>') repeat;
    opacity: 0.5;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-gray);
    border-radius: 16px;
    margin: 0 1rem;
    position: relative;
}

.testimonial.active {
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: serif;
    opacity: 0.3;
}

.testimonial .stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-testimonial,
.next-testimonial {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Product Page Category Image and List Styles */
.category-main-image {
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-main-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
}

.category-main-image:hover img {
    transform: scale(1.05);
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.product-list li {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border-left: 4px solid var(--primary-color);
    font-weight: 500;
    color: var(--text-dark);
}

.product-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--light-gray), var(--white));
}

/* New layout for image and list side by side */
.product-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.product-content .category-main-image {
    flex: 1;
    margin: 0;
}

.product-content .product-list {
    flex: 1;
    margin: 0;
    display: block;
}

.product-content .product-list li {
    margin-bottom: 0.5rem;
    display: block;
    width: 100%;
}

/* Responsive adjustments for category image and list */
@media (max-width: 768px) {
    .product-list {
        grid-template-columns: 1fr;
    }

    .product-list li {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .product-content {
        flex-direction: column;
        gap: 1rem;
    }

    .product-content .product-list {
        display: grid;
        grid-template-columns: 1fr;
    }
}

