/* Ethical Gemstone Jewelry Template - Main CSS */

/* Color Palette Variables */
:root {
    /* Primary Colors */
    --emerald-green: #2E8B57;
    --sapphire-blue: #1E3A8A;
    --ruby-red: #DC143C;
    --champagne-gold: #F7E7CE;
    --pearl-white: #FAF7F2;
    
    /* Light Shades */
    --emerald-light: #90C695;
    --sapphire-light: #93C5FD;
    --ruby-light: #FECACA;
    --champagne-light: #FEF3C7;
    --pearl-light: #FEFEFE;
    
    /* Dark Shades */
    --emerald-dark: #1F5F3F;
    --sapphire-dark: #1E40AF;
    --ruby-dark: #B91C1C;
    --champagne-dark: #D4AF37;
    --pearl-dark: #E5E5E5;
    
    /* Neutral Colors */
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --border-color: #E5E7EB;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Respect Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Header Styles */
#header {
    background-color: var(--bg-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-green);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--emerald-dark);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.75rem 1.2rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--sapphire-blue);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--pearl-white) 0%, var(--champagne-light) 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--emerald-light);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--sapphire-light);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    padding: 2rem;
    padding-top: 175px;
}

.hero-content h1 {
    color: var(--emerald-green);
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-content h2 {
    color: var(--sapphire-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
}

.hero-image {
    z-index: 2;
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Feature Cards */
.feature-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--emerald-green);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Service Cards */
.service-card {
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 2rem;
}

.service-card h4 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald-green);
    font-weight: bold;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ruby-red);
    text-align: center;
}

/* Feature Items */
.feature-item {
    padding: 2rem 0;
    align-items: flex-start;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--emerald-light), var(--sapphire-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.feature-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

/* Price Cards */
.price-card {
    background: var(--bg-primary);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border-color: var(--emerald-green);
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -40px;
    background: var(--emerald-green);
    color: var(--bg-primary);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.price-card h4 {
    color: var(--emerald-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--pearl-dark);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ruby-red);
    margin-top: 2rem;
}

/* Team Members */
.team-member {
    text-align: center;
    padding: 1.5rem;
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--emerald-light);
    transition: all 0.3s ease;
}

.team-member:hover img {
    border-color: var(--emerald-green);
    transform: scale(1.1);
}

.team-member h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--sapphire-blue);
    font-weight: 500;
}

/* Review Cards */
.review-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--emerald-green);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.review-card p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.review-card h5 {
    color: var(--emerald-green);
    font-weight: 600;
}

/* Case Study Cards */
.case-card {
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-card h4 {
    color: var(--emerald-green);
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

.case-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

/* Process Steps */
.process-step {
    padding: 2rem 1rem;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--emerald-green), var(--sapphire-blue));
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Timeline Items */
.timeline-item {
    text-align: center;
    padding: 2rem 1rem;
}

.year {
    width: 80px;
    height: 80px;
    background: var(--champagne-gold);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--emerald-green);
}

.timeline-item h4 {
    color: var(--emerald-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Career Cards */
.career-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--emerald-green);
}

.career-card h4 {
    color: var(--emerald-green);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.career-card p:first-of-type {
    color: var(--ruby-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Info Cards */
.info-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 3rem;
    color: var(--sapphire-blue);
    margin-bottom: 1.5rem;
    display: block;
}

.info-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-primary);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--emerald-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

.btn-primary {
    background: linear-gradient(45deg, var(--emerald-green), var(--sapphire-blue));
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 139, 87, 0.3);
}

/* Contact Info */
.contact-info {
    padding: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--emerald-green);
    margin-right: 1rem;
    width: 30px;
}

/* Blog Cards */
.blog-card {
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h4 {
    color: var(--emerald-green);
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

.blog-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-secondary);
}

.read-more {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    color: var(--sapphire-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--sapphire-dark);
    text-decoration: underline;
}

/* FAQ Cards */
.faq-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--emerald-green);
}

.faq-card h4 {
    color: var(--emerald-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Gallery */
#gallery img {
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--bg-secondary);
    padding: 2rem 0;
    margin-top: 80px;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-icon {
    height: 40px;
    width: auto;
}

/* Collection Items */
.collection-item,
.jewelry-line-item,
.design-service-item,
.investment-item,
.membership-item,
.certification-item,
.ethics-item,
.quality-item,
.trace-item,
.audit-item {
    padding: 2rem 1rem;
    text-align: center;
    background: var(--bg-primary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.collection-item:hover,
.jewelry-line-item:hover,
.design-service-item:hover,
.investment-item:hover,
.membership-item:hover,
.certification-item:hover,
.ethics-item:hover,
.quality-item:hover,
.trace-item:hover,
.audit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--emerald-green);
}

.collection-item img,
.jewelry-line-item img,
.certification-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.design-icon,
.invest-icon,
.membership-icon,
.ethics-icon,
.quality-icon,
.trace-icon,
.audit-icon {
    font-size: 3rem;
    color: var(--emerald-green);
    margin-bottom: 1.5rem;
    display: block;
}

.collection-item h4,
.jewelry-line-item h4,
.design-service-item h4,
.investment-item h4,
.membership-item h4,
.certification-item h4,
.ethics-item h4,
.quality-item h4,
.trace-item h4,
.audit-item h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Footer */
#footer {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 4rem 0 2rem;
}

#footer h5 {
    color: var(--emerald-light);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

#footer ul li {
    margin-bottom: 0.5rem;
}

#footer ul li a {
    color: var(--pearl-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

#footer ul li a:hover {
    color: var(--emerald-light);
    text-decoration: underline;
}

#footer p {
    color: var(--pearl-light);
    margin-bottom: 0.5rem;
}

#footer hr {
    border-color: var(--border-color);
    margin: 2rem 0;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.py-5 { padding: 3rem 0; }
.bg-light { background-color: var(--bg-secondary); }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional Responsive Utilities */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content h2 { font-size: 1.5rem; }
    .feature-icon-wrapper { margin-right: 1rem; margin-bottom: 1rem; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-8px); }
}



/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
