/*!
 * ABBAD & CO - Custom Styles
 * Theme Colors: Primary #2d4c2d | Accent #ab9a62 | Cream #FFF8E7
 */

:root {
    --primary-color: #2d4c2d;
    --primary-dark: #1f3621;
    --primary-light: #3d6c3d;
    --accent-color: #ab9a62;
    --accent-dark: #8b7a42;
    --accent-light: #d4c692;
    --cream: #FFF8E7;
    --cream-dark: #F5E8CF;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', 'Cairo', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 76, 45, 0.3);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(171, 154, 98, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 10px 28px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.25rem 0;
}

.navbar-brand:hover {
    opacity: 0.8;
}

/* Brand Logo Image */
.brand-logo-img {
    height: 55px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-logo-img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--black) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.language-switcher {
    margin-left: 1rem;
}

.language-switcher .dropdown-toggle {
    background-color: var(--cream);
    border: 1px solid var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.language-switcher .dropdown-toggle:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.language-switcher .dropdown-menu {
    border: 1px solid var(--accent-light);
}

.language-switcher .dropdown-item {
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.language-switcher .dropdown-item:hover {
    background-color: var(--cream);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ab9a62"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
}

.hero .btn {
    margin: 0.5rem;
    position: relative;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.bg-cream {
    background-color: var(--cream);
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

/* Value Cards */
.value-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--accent-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-card .icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(45, 76, 45, 0.12);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(171, 154, 98, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(45, 76, 45, 0.25);
    border-color: var(--accent-color);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card .product-header {
    background: linear-gradient(135deg, #2d4c2d 0%, #3a6340 50%, #2d4c2d 100%);
    color: var(--white);
    padding: 2rem 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.product-card .product-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(171, 154, 98, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.product-card .product-category {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(171, 154, 98, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(10px);
}

.product-card .product-name {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--white);
    margin: 0.75rem 0 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.product-card .product-tagline {
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 0;
}

.product-card .product-body {
    padding: 1.75rem;
    flex-grow: 1;
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 248, 231, 0.3) 100%);
}

.product-card .product-description {
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.product-card .badge {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card .badge i {
    font-size: 0.9rem;
}

.product-card .product-footer {
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, rgba(45, 76, 45, 0.03) 0%, rgba(171, 154, 98, 0.05) 100%);
    border-top: 2px solid rgba(171, 154, 98, 0.15);
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-card .btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.product-card .btn-sm i {
    font-size: 0.95rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 12px 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(171, 154, 98, 0.25);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 15px;
    padding: 3rem;
    height: 100%;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-info-item p {
    margin: 0;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Breadcrumb */
.product-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.product-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.product-breadcrumb .breadcrumb-item a:hover {
    color: var(--accent-color);
}

.product-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Product Hero Section */
.product-hero {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d4c2d 50%, #1a3a1a 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(171, 154, 98, 0.15), transparent 60%);
}

.product-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(171, 154, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(171, 154, 98, 0.08) 0%, transparent 50%);
}

.product-hero .container {
    position: relative;
    z-index: 2;
}

.product-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(171, 154, 98, 0.2);
    color: var(--accent-color);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(171, 154, 98, 0.3);
    backdrop-filter: blur(10px);
}

.product-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.product-hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-light);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.product-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.product-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(171, 154, 98, 0.4);
}

.btn-hero-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(171, 154, 98, 0.5);
    color: var(--white);
}

.btn-hero-accent {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-accent:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-hero-icon,
.btn-hero-text {
    position: relative;
    z-index: 1;
}

.btn-hero-icon {
    font-size: 1.1rem;
}

/* Product Hero Card */
.product-hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.product-info-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.product-info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.product-info-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.product-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-info-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info-value {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
}

/* Modern Tabs */
.modern-tabs {
    margin-bottom: 3rem;
}

.modern-nav-pills {
    background: var(--white);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.modern-nav-pills .nav-item {
    flex: 1;
    min-width: 150px;
}

.modern-nav-pills .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    background: transparent;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.modern-nav-pills .nav-link:hover {
    background: var(--cream);
    color: var(--primary-color);
}

.modern-nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(45, 76, 45, 0.3);
}

.pill-icon {
    font-size: 1.5rem;
}

.pill-text {
    font-size: 0.9rem;
}

/* Modern Tab Content */
.modern-tab-content {
    margin-top: 2rem;
}

.modern-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(171, 154, 98, 0.1);
    overflow: hidden;
}

.modern-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.modern-card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(171, 154, 98, 0.3), transparent 70%);
    border-radius: 50%;
}

.card-header-icon {
    font-size: 2rem;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

.modern-card-header h3 {
    color: var(--white);
    font-weight: 700;
    margin: 0;
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

.modern-card-body {
    padding: 2.5rem;
}

/* Description Content */
.description-content .lead-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.description-content .regular-text {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1rem;
}

.divider-line {
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin: 2rem 0;
    border-radius: 2px;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    gap: 1.5rem;
}

.property-item {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(255, 248, 231, 0.5) 100%);
    border-radius: 15px;
    padding: 1.75rem;
    border-left: 5px solid var(--accent-color);
    transition: all 0.3s ease;
}

.property-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.property-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-label i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.property-value {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

.ph-badge,
.charge-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
}

.ph-badge {
    background: linear-gradient(135deg, #4CAF50, #81C784);
    color: white;
}

.charge-badge {
    color: white;
}

.charge-badge.anionic {
    background: linear-gradient(135deg, #E91E63, #F06292);
}

.charge-badge.cationic {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
}

.charge-badge.nonionic {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
}

/* Modern Features List */
.modern-features-list {
    display: grid;
    gap: 1rem;
}

.modern-feature-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.modern-feature-item:hover {
    border-color: var(--accent-light);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modern-feature-item:hover::before {
    transform: scaleY(1);
}

.feature-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-light);
    opacity: 0.3;
    min-width: 40px;
}

.feature-check {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.feature-text {
    flex: 1;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Application Sections */
.application-intro {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    border-left: 5px solid #2196F3;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.application-intro i {
    font-size: 1.5rem;
    color: #2196F3;
    margin-top: 0.25rem;
}

.application-intro p {
    margin: 0;
    color: #1565C0;
    font-weight: 500;
    line-height: 1.7;
}

.application-sections {
    display: grid;
    gap: 1.5rem;
}

.application-section {
    background: var(--cream);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(171, 154, 98, 0.2);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.section-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.section-header h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    font-size: 1.25rem;
}

.section-content {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Modern Sidebar Cards */
.modern-sidebar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    border: 2px solid rgba(171, 154, 98, 0.1);
    transition: all 0.3s ease;
}

.modern-sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-light);
}

.sidebar-card-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.sidebar-card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.sidebar-card-text {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sidebar-info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--cream);
}

.sidebar-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
}

.info-item-header i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.info-item-text {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Sidebar Card */
.contact-sidebar-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.contact-sidebar-card .sidebar-card-icon {
    background: rgba(171, 154, 98, 0.3);
    border: 2px solid rgba(171, 154, 98, 0.5);
}

.contact-sidebar-card .sidebar-card-title,
.contact-sidebar-card .sidebar-card-text {
    color: var(--white);
}

.contact-actions {
    display: grid;
    gap: 1rem;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-btn {
    background: var(--accent-color);
    color: var(--white);
}

.phone-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(171, 154, 98, 0.4);
    color: var(--white);
}

.email-btn {
    background: var(--white);
    color: var(--primary-color);
}

.email-btn:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

/* Related Products Card */
.related-products-card .category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream);
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.view-all-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(45, 76, 45, 0.3);
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .product-hero-title {
        font-size: 2.5rem;
    }
    
    .product-info-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-nav-pills {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .modern-nav-pills::-webkit-scrollbar {
        display: none;
    }
    
    .modern-nav-pills .nav-item {
        flex: 0 0 auto;
        min-width: auto;
    }
    
    .product-hero-card {
        margin-top: 2rem;
    }
    
    .modern-card-header {
        padding: 1.5rem;
    }
    
    .modern-card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .product-hero {
        padding: 40px 0 60px;
    }
    
    .product-hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .product-hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .product-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .product-hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .product-hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .product-hero-card {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .product-info-item {
        padding: 1rem;
    }
    
    .product-info-icon {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .product-info-label {
        font-size: 0.75rem;
    }
    
    .product-info-value {
        font-size: 0.95rem;
    }
    
    /* Modern Tabs Mobile */
    .modern-tabs {
        margin-bottom: 1.5rem;
    }
    
    .modern-nav-pills {
        padding: 0.5rem;
        gap: 0.25rem;
        border-radius: 12px;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .modern-nav-pills::-webkit-scrollbar {
        display: none;
    }
    
    .modern-nav-pills .nav-item {
        flex: 0 0 auto;
    }
    
    .modern-nav-pills .nav-link {
        flex-direction: column;
        padding: 0.6rem 0.8rem;
        gap: 0.3rem;
        font-size: 0.75rem;
        min-width: 70px;
    }
    
    .pill-icon {
        font-size: 1rem;
    }
    
    .pill-text {
        font-size: 0.7rem;
        white-space: nowrap;
    }
    
    /* Modern Card Mobile */
    .modern-card-header {
        padding: 1.25rem;
        flex-wrap: wrap;
    }
    
    .card-header-icon {
        font-size: 1.5rem;
    }
    
    .modern-card-header h3 {
        font-size: 1.2rem;
    }
    
    .modern-card-body {
        padding: 1.25rem;
    }
    
    /* Properties Grid Mobile */
    .properties-grid {
        gap: 1rem;
    }
    
    .property-item {
        padding: 1.25rem;
        border-left-width: 4px;
    }
    
    .property-item:hover {
        transform: translateX(5px);
    }
    
    .property-label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .property-label i {
        font-size: 1rem;
    }
    
    .property-value {
        font-size: 0.95rem;
    }
    
    /* Features List Mobile */
    .modern-features-list {
        gap: 0.75rem;
    }
    
    .modern-feature-item {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .feature-number {
        font-size: 1.5rem;
        min-width: 50px;
    }
    
    .feature-text {
        font-size: 0.9rem;
        flex: 1;
        min-width: calc(100% - 80px);
    }
    
    /* Sidebar Cards Mobile */
    .modern-sidebar-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .sidebar-card-icon {
        font-size: 2rem;
    }
    
    .sidebar-card-title {
        font-size: 1.1rem;
    }
    
    .sidebar-info-item {
        padding: 0.75rem;
    }
    
    .info-item-header {
        font-size: 0.85rem;
    }
    
    .info-item-text {
        font-size: 0.9rem;
    }
    
    /* Contact Actions Mobile */
    .contact-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-action-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Share Dropdown Mobile */
    .share-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 20px 20px 0 0;
        min-width: 100%;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    /* Description Content Mobile */
    .description-content .lead-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Breadcrumb Mobile */
    .product-breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    
    .product-breadcrumb .breadcrumb-item {
        font-size: 0.8rem;
    }
    
    /* Application Sections Mobile */
    .application-intro {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .application-section {
        margin-bottom: 1rem;
    }
    
    .section-header h5 {
        font-size: 1rem;
    }
    
    .section-content {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    /* CTA Section Mobile */
    .section.bg-cream h2 {
        font-size: 1.5rem;
    }
    
    .section.bg-cream p.lead {
        font-size: 1rem;
    }
    
    .section.bg-cream .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding: 30px 0 50px;
    }
    
    .product-hero-title {
        font-size: 1.4rem;
    }
    
    .product-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .product-hero-description {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .product-info-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .product-info-item {
        padding: 0.85rem;
    }
    
    .modern-nav-pills .nav-link {
        padding: 0.65rem 0.85rem;
    }
    
    .modern-card-header {
        padding: 1rem;
    }
    
    .modern-card-header h3 {
        font-size: 1.1rem;
    }
    
    .modern-card-body {
        padding: 1rem;
    }
    
    .property-item {
        padding: 1rem;
    }
    
    .modern-sidebar-card {
        padding: 1.25rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .value-card,
    .product-card {
        margin-bottom: 2rem;
    }
    
    .contact-form,
    .contact-info {
        margin-bottom: 2rem;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.border-accent {
    border-color: var(--accent-color) !important;
}

/* Loading Spinner */
.spinner {
    border: 3px solid var(--cream);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Share Dropdown */
.btn-hero-secondary {
    background: linear-gradient(135deg, #666 0%, #555 100%);
    color: white;
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, #555 0%, #444 100%);
    transform: translateY(-2px);
}

.share-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 20px;
    min-width: 280px;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--cream);
}

.share-dropdown-header h6 {
    margin: 0;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.share-close:hover {
    background: var(--cream);
    color: var(--primary-color);
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 10px;
    background: var(--gray-light);
    transition: var(--transition);
    text-decoration: none;
    color: var(--black);
}

.share-option:hover {
    background: var(--cream);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--black);
}

.share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.share-option span {
    font-weight: 500;
    font-size: 14px;
}

.product-hero-actions {
    position: relative;
}