/* Neon Sign Store - Main CSS */

:root {
    --primary-color: #ff6b9d;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --dark-color: #2d3436;
    --light-color: #f8f9fa;
    --primary-dark: #e85a87;
    --secondary-dark: #3bb5ad;
    --accent-dark: #f0d04e;
    --primary-light: #ffb3d1;
    --secondary-light: #8ee6e0;
    --accent-light: #fff4a3;
}

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 76px;
    overflow-x: hidden;
}

@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;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.hero-section h1 {
    color: var(--dark-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    padding-top: 275px;
}

.hero-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: none;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--primary-color);
}

.feature-card h4 {
    color: var(--dark-color);
    margin-top: 1rem;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.service-card .price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.service-card .features {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-style: italic;
}

/* Features Section */
.features-section {
    background: white;
}

.feature-item {
    padding: 1.5rem;
}

.feature-item i {
    color: var(--secondary-color);
}

.feature-item h4 {
    color: var(--dark-color);
    margin-top: 1rem;
}

/* Price Cards */
.price-card {
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
}

.price-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.price-card.border-primary {
    border-color: var(--primary-color);
    position: relative;
}

.price-card.border-primary::before {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card h4 {
    color: var(--primary-color);
    font-weight: 600;
}

.price-card h3 {
    color: var(--accent-color);
    font-weight: 700;
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.team-member h5 {
    color: var(--dark-color);
    margin-top: 1rem;
}

.team-member p {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Review Cards */
.review-card {
    border: none;
    border-radius: 15px;
    background: var(--light-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.review-card .card-text {
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.review-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Case Study Cards */
.case-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.case-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.case-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Process Steps */
.process-step {
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    color: var(--dark-color);
    font-weight: 600;
}

.process-step p {
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Timeline Items */
.timeline-item {
    padding: 1.5rem;
}

.year {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.timeline-item h6 {
    color: var(--dark-color);
    font-weight: 600;
}

.timeline-item p {
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Career Cards */
.career-card {
    border: none;
    border-radius: 15px;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
}

.career-card h5 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Info Cards */
.info-card {
    padding: 2rem;
}

.info-card i {
    color: var(--accent-color);
}

.info-card h5 {
    color: var(--dark-color);
    margin-top: 1rem;
    font-weight: 600;
}

/* Gallery */
.gallery-section img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Blog Cards */
.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-card .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.blog-card .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* FAQ Cards */
.faq-card {
    border: none;
    border-radius: 15px;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.faq-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-card .card-text {
    color: var(--dark-color);
}

/* Contact Form */
.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.contact-form .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
}

.contact-form .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.contact-info i {
    color: var(--secondary-color);
}

.contact-info h5 {
    color: var(--dark-color);
    margin-top: 1rem;
    font-weight: 600;
}

/* Footer */
.footer-section {
    background: var(--dark-color) !important;
}

.footer-section h5 {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-section a {
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color) !important;
}

/* Breadcrumb */
.breadcrumb-section {
    padding-top: 100px;
}

/* Navigation */
.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Utilities */
.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

.bg-accent-custom {
    background-color: var(--accent-color) !important;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.text-accent-custom {
    color: var(--accent-color) !important;
}

/* Space Page */
#space {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    min-height: calc(100vh - 76px);
}

/* Additional Page Items */
.story-item, .mission-item, .tech-item, .cert-item, .sustain-item,
.design-item, .manufacturing-item, .installation-item, .maintenance-item, .consultation-item {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.story-item:hover, .mission-item:hover, .tech-item:hover, .cert-item:hover, .sustain-item:hover,
.design-item:hover, .manufacturing-item:hover, .installation-item:hover, .maintenance-item:hover, .consultation-item:hover {
    transform: translateY(-3px);
}

.story-item h5, .mission-item h5, .tech-item h5, .cert-item h5, .sustain-item h5,
.design-item h5, .manufacturing-item h5, .installation-item h5, .maintenance-item h5, .consultation-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.story-item p, .mission-item p, .tech-item p, .cert-item p, .sustain-item p,
.design-item p, .manufacturing-item p, .installation-item p, .maintenance-item p, .consultation-item p {
    color: var(--dark-color);
    font-size: 0.9rem;
    margin-bottom: 0;
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

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

.x-link i {
    display: none;
}

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