/* ===================================================================
   SKY LIGHT TEXTILE TRADING - Main Stylesheet
   Premium Wholesale Textile Business - Dubai, UAE
   
   Color Palette:
   - Primary (Navy): #1a365d
   - Secondary (Gold): #c9a227
   - Accent Light: #f4e4bc
   - White: #ffffff
   - Light Grey: #f8f9fa
   - Dark Grey: #333333
   - Text Grey: #666666
=================================================================== */

/* ===================================================================
   CSS RESET & BASE STYLES
=================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1a365d;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #666666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================================================
   UTILITY CLASSES
=================================================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 65px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    font-size: 2.8rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #c9a227, #1a365d);
    border-radius: 2px;
}

.section-header p {
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-navy {
    background-color: #1a365d;
    color: #ffffff;
}

.bg-navy h2, .bg-navy h3, .bg-navy h4 {
    color: #ffffff;
}

.bg-navy p {
    color: rgba(255, 255, 255, 0.85);
}

.bg-navy .section-header h2 {
    color: #ffffff;
}

.bg-navy .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: #c9a227;
}

/* ===================================================================
   BUTTONS
=================================================================== */
.btn {
    display: inline-block;
    padding: 16px 38px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #c9a227 0%, #d4b23c 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8931e 0%, #c9a227 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, #1a365d 0%, #2a4a7a 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #152a4a 0%, #1a365d 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.45);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #c9a227;
    color: #c9a227;
}

.btn-outline:hover {
    background-color: #c9a227;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: #1a365d;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 20px 50px;
    font-size: 1.05rem;
}

/* ===================================================================
   TOP BAR
=================================================================== */
.top-bar {
    background-color: #1a365d;
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar i {
    color: #c9a227;
}

/* ===================================================================
   MAIN HEADER
=================================================================== */
.main-header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a365d;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.85rem;
    color: #c9a227;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-list a {
    font-weight: 500;
    color: #333333;
    padding: 10px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c9a227;
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: #c9a227;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #1a365d;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-list a {
    display: block;
    padding: 12px 15px;
    font-weight: 500;
    color: #333333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background-color: #f8f9fa;
    color: #c9a227;
}

.mobile-cta {
    text-align: center;
    margin-top: 10px;
}

/* ===================================================================
   HERO SECTION
=================================================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    /* Textile background image */
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0.75) 100%),
                url('../assets/images/Sky Light Textile Trading (1).jpeg') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(201, 162, 39, 0.2);
    border: 1px solid #c9a227;
    color: #c9a227;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    color: #ffffff;
    font-size: 3.2rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero h1 span {
    color: #c9a227;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a227;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================================================
   FABRIC CATEGORIES
=================================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.category-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(26, 54, 93, 0.15);
}

.category-image {
    height: 250px;
    background-color: #f0f0f0;
    background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-image::after {
    opacity: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

/* Placeholder Icon */
.category-image .placeholder-icon {
    font-size: 3.5rem;
    color: #c9a227;
    opacity: 0.6;
}

.category-content {
    padding: 30px 25px;
    background: #ffffff;
}

.category-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #1a365d;
    font-weight: 600;
}

.category-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===================================================================
   EXPERTISE SECTION
=================================================================== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

.expertise-card {
    background-color: #ffffff;
    padding: 50px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid #c9a227;
    box-shadow: 0 25px 60px rgba(26, 54, 93, 0.12);
}

.expertise-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a365d 0%, #2a4a7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
}

.expertise-icon i {
    font-size: 2.2rem;
    color: #c9a227;
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #1a365d;
}

.expertise-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* Expertise cards on dark background */
.bg-navy .expertise-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-navy .expertise-card h3 {
    color: #ffffff;
}

.bg-navy .expertise-card p {
    color: rgba(255, 255, 255, 0.85);
}

.bg-navy .expertise-icon {
    background: linear-gradient(135deg, #c9a227 0%, #d4b23c 100%);
}

.bg-navy .expertise-icon i {
    color: #1a365d;
}

/* ===================================================================
   TRUST CREDENTIALS SECTION
=================================================================== */
.trust-section {
    background: linear-gradient(135deg, #1a365d 0%, #0f1f35 100%);
    padding: 60px 0;
}

.trust-section .section-header h2 {
    color: #c9a227;
}

.trust-section .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 45px 30px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
}

.trust-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
}

.trust-item i {
    font-size: 3rem;
    color: #c9a227;
    margin-bottom: 15px;
}

.trust-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.trust-value {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* ===================================================================
   GALLERY SECTION
=================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(26, 54, 93, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    -webkit-filter: saturate(1);
    filter: saturate(1);
}

/* Placeholder Gallery Item */
.gallery-item-placeholder {
    background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item-placeholder i {
    font-size: 2.5rem;
    color: #999;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay with Label */
.gallery-item::before {
    content: attr(data-label);
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, #c9a227 0%, #d4b23c 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.8) 0%, rgba(26, 54, 93, 0.2) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Gallery zoom icon */
.gallery-item .gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.gallery-item .gallery-icon i {
    font-size: 1.5rem;
    color: #1a365d;
}

.gallery-item:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* ===================================================================
   WHY CHOOSE US SECTION
=================================================================== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.why-choose-content h2 {
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.why-choose-content > p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
}

.why-choose-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9a227 0%, #d4b23c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}

.why-choose-item-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #1a365d;
}

.why-choose-item-content p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
    color: #666;
}

.why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

/* Placeholder Why Choose Image */
.why-choose-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.why-choose-image-placeholder i {
    font-size: 4rem;
    color: #999;
}

.why-choose-image-placeholder span {
    color: #888;
    font-size: 0.9rem;
}

.why-choose-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: #c9a227;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    text-align: center;
}

.badge-number {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ===================================================================
   CTA SECTION
=================================================================== */
.cta-section {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(26, 54, 93, 0.85) 100%),
                url('../assets/images/Sky Light Textile Trading (3).jpeg') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===================================================================
   ABOUT PAGE STYLES
=================================================================== */
.page-hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(26, 54, 93, 0.85) 100%),
                url('../assets/images/Sky Light Textile Trading (2).jpeg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
    color: #c9a227;
}

.breadcrumb span {
    color: #c9a227;
}

.breadcrumb span:not(:last-child) {
    color: rgba(255, 255, 255, 0.7);
}

/* About Intro */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    margin-bottom: 20px;
}

.about-intro-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.about-intro-image {
    position: relative;
}

.about-intro-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.about-intro-image-placeholder i {
    font-size: 4rem;
    color: #999;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #c9a227, #1a365d);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #c9a227;
    border: 4px solid #ffffff;
    border-radius: 50%;
    top: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-content {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.timeline-year {
    display: inline-block;
    background-color: #1a365d;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

@media (max-width: 1100px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.value-card {
    background-color: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(26, 54, 93, 0.12);
}

.value-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #c9a227 0%, #d4b23c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.value-icon i {
    font-size: 2.2rem;
    color: #ffffff;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a365d;
}

.value-card p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
    color: #666;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(26, 54, 93, 0.15);
    border-color: #c9a227;
}

.team-image {
    height: 220px;
    background: linear-gradient(135deg, #1a365d 0%, #2a4a7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image i {
    font-size: 5rem;
    color: #c9a227;
}

.team-info {
    padding: 35px 30px;
}

.team-info h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: #1a365d;
}

.team-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 18px;
}

.team-role {
    color: #c9a227;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a365d;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: #c9a227;
    color: #ffffff;
}

/* ===================================================================
   PRODUCTS PAGE STYLES
=================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.product-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(26, 54, 93, 0.18);
}

.product-image {
    height: 300px;
    background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-image .placeholder-icon {
    font-size: 4.5rem;
    color: #999;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #c9a227 0%, #d4b23c 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
    z-index: 1;
}

.product-content {
    padding: 35px 30px;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a365d;
    font-weight: 600;
}

.product-content p {
    font-size: 1rem;
    margin-bottom: 22px;
    line-height: 1.7;
    color: #666;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.product-features span {
    background-color: #f0f4f8;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #1a365d;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* Bulk Orders Section */
.bulk-orders {
    background-color: #1a365d;
    border-radius: 20px;
    overflow: hidden;
}

.bulk-orders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.bulk-orders-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bulk-orders-content h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.bulk-orders-content > p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.bulk-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.bulk-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.bulk-feature i {
    color: #c9a227;
    font-size: 1.2rem;
}

.bulk-orders-image {
    background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bulk-orders-image i {
    font-size: 5rem;
    color: #999;
}

/* ===================================================================
   CONTACT PAGE STYLES
=================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-card {
    background-color: #1a365d;
    padding: 50px;
    border-radius: 12px;
    color: #ffffff;
}

.contact-info-card h3 {
    color: #ffffff;
    margin-bottom: 25px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background-color: rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info-text p,
.contact-info-text a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.contact-info-text a:hover {
    color: #c9a227;
}

.contact-credentials {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-credentials h4 {
    color: #c9a227;
    font-size: 1rem;
    margin-bottom: 20px;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credential-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.credential-row span:first-child {
    color: rgba(255, 255, 255, 0.7);
}

.credential-row span:last-child {
    color: #ffffff;
    font-weight: 500;
}

/* Contact Form */
.contact-form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    margin-bottom: 10px;
}

.contact-form-card > p {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group label span {
    color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9a227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    margin-top: 10px;
}

.form-submit .btn {
    width: 100%;
}

/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-container {
    height: 400px;
    background-color: #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.map-container i {
    font-size: 4rem;
    color: #999;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, #1a365d 0%, #0f1f35 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.quote-section h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.quote-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.quote-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.quote-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-contact-item i {
    width: 50px;
    height: 50px;
    background-color: rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    font-size: 1.2rem;
}

.quote-contact-item span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===================================================================
   FOOTER STYLES
=================================================================== */
.main-footer {
    background-color: #0f1f35;
    color: #ffffff;
}

.footer-top {
    padding: 70px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-main {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo .logo-sub {
    display: block;
    font-size: 0.8rem;
    color: #c9a227;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #c9a227;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c9a227;
    display: inline-block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #c9a227;
}

.footer-links a:hover {
    color: #c9a227;
    padding-left: 5px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    display: flex;
    gap: 15px;
}

.contact-list i {
    color: #c9a227;
    font-size: 1rem;
    margin-top: 4px;
}

.contact-list div {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-list strong {
    color: #ffffff;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-list a:hover {
    color: #c9a227;
}

/* Footer Credentials */
.footer-credentials {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.credentials-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.credential-item i {
    font-size: 1.5rem;
    color: #c9a227;
}

.credential-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.credential-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.credit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===================================================================
   BACK TO TOP & WHATSAPP FLOAT
=================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #1a365d;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #c9a227;
    transform: translateY(-3px);
}

/* WhatsApp on LEFT side */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: auto;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ===================================================================
   ANIMATIONS
=================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================================================
   RESPONSIVE STYLES
=================================================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero h1 { font-size: 2.6rem; }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-intro,
    .why-choose-grid {
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bulk-orders-grid {
        grid-template-columns: 1fr;
    }
    
    .bulk-orders-content {
        padding: 40px;
    }
    
    .bulk-orders-image {
        height: 250px;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-marker {
        left: 10px !important;
        right: auto !important;
    }
}

/* Large Mobile & Small Tablets */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    
    .top-bar {
        display: none;
    }
    
    .main-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-intro,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 35px;
    }
    
    .footer-logo {
        text-align: left;
    }
    
    .footer-description {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-title {
        text-align: left;
    }
    
    .footer-links a {
        justify-content: flex-start;
    }
    
    .contact-list li {
        justify-content: flex-start;
        text-align: left;
    }
    
    .credentials-grid {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .credential-item {
        justify-content: flex-start;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: left;
    }
    
    /* Mobile floating buttons */
    .whatsapp-float {
        left: 20px;
        bottom: 25px;
        width: 55px;
        height: 55px;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 25px;
        width: 45px;
        height: 45px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-section {
        padding: 40px 25px;
    }
    
    .quote-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .quote-contact-item {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 14px 30px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-item {
        padding: 20px 15px;
    }
    
    .trust-value {
        font-size: 1.2rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    /* Float buttons for small screens */
    .back-to-top {
        right: 20px;
        bottom: 25px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float {
        left: 20px;
        right: auto;
        bottom: 25px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .stat-item {
        width: 100%;
        text-align: center;
    }
}

/* ===================================================================
   PERFORMANCE OPTIMIZATIONS
=================================================================== */
/* Hardware acceleration for animations */
.category-card,
.expertise-card,
.product-card,
.value-card,
.team-card,
.gallery-item,
.why-choose-item {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Optimize image rendering */
img {
    content-visibility: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ===================================================================
   MOBILE COLOR & DISPLAY FIXES
=================================================================== */
/* Force colors on mobile browsers - especially Chrome Android */
@media (max-width: 1024px) {
    /* Ensure proper color rendering on mobile */
    body {
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Force gold color on buttons */
    .btn-primary {
        background: #c9a227 !important;
        background: linear-gradient(135deg, #c9a227 0%, #d4b23c 100%) !important;
    }
    
    /* Ensure DARKER navy background displays - fixed for Chrome mobile */
    .bg-navy,
    .trust-section,
    .main-footer,
    .footer-top,
    .footer-credentials,
    .cta-section,
    .quote-section {
        background-color: #0f2744 !important;
        background: linear-gradient(180deg, #1a365d 0%, #0f2744 100%) !important;
    }
    
    /* Page hero darker */
    .page-hero {
        background-color: #0f2744 !important;
    }
    
    /* Force white text on dark backgrounds */
    .bg-navy h2,
    .bg-navy h3,
    .bg-navy h4,
    .bg-navy p,
    .bg-navy span,
    .trust-section h2,
    .trust-section p,
    .trust-item span,
    .footer-top h2,
    .footer-top h3,
    .footer-top p,
    .footer-title,
    .footer-description,
    .footer-links a,
    .contact-list div,
    .contact-list strong,
    .credential-item span,
    .credential-value,
    .credential-label,
    .copyright,
    .credit {
        color: #ffffff !important;
    }
    
    /* Gold accent colors */
    .trust-section .section-header h2,
    .trust-item i,
    .footer-logo .logo-sub,
    .footer-title,
    .footer-links a i,
    .contact-list i,
    .credential-item i {
        color: #c9a227 !important;
    }
    
    /* Card backgrounds */
    .category-card,
    .expertise-card,
    .product-card,
    .value-card {
        background-color: #ffffff !important;
    }
    
    /* Quote section card */
    .quote-section .quote-card,
    .cta-section .cta-card {
        background-color: rgba(255, 255, 255, 0.08) !important;
    }
    
    /* Ensure images display properly */
    img {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    /* Gallery label visibility on touch */
    .gallery-item::before {
        opacity: 1;
        transform: translateY(0);
    }
    
    .gallery-item::after {
        opacity: 0.6;
    }
}