/* Smart Wardrobe Template - Main CSS */

/* Color Palette - 5 Primary Colors + Light/Dark Shades */
:root {
    /* Primary Colors */
    --primary-blue: #2563eb;
    --primary-green: #10b981;
    --primary-purple: #8b5cf6;
    --primary-orange: #f59e0b;
    --primary-pink: #ec4899;
    
    /* Light Shades */
    --light-blue: #dbeafe;
    --light-green: #d1fae5;
    --light-purple: #ede9fe;
    --light-orange: #fef3c7;
    --light-pink: #fce7f3;
    
    /* Dark Shades */
    --dark-blue: #1e40af;
    --dark-green: #059669;
    --dark-purple: #7c3aed;
    --dark-orange: #d97706;
    --dark-pink: #db2777;
    
    /* Additional Colors */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
    --black: #000000;
    
    /* Conservative Font Sizes */
    --navbar-brand-size: 1.5rem;
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
    --h4-size: 1.25rem;
    --h5-size: 1.125rem;
    --p-size: 1rem;
    --small-size: 0.875rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: var(--p-size);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* Typography */
h1 {
    font-size: var(--h1-size);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: var(--h3-size);
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

h4 {
    font-size: var(--h4-size);
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

h5 {
    font-size: var(--h5-size);
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

p {
    font-size: var(--p-size);
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: var(--navbar-brand-size) !important;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--light-blue) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.webp') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 2rem 0;
}

.hero-content h1 {
    color: var(--white);
    font-size: var(--h1-size);
    margin-bottom: 1rem;
}

.hero-content p {
    color: var(--light-blue);
    font-size: var(--p-size);
    margin-bottom: 1.5rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    padding: 0.25rem 0;
    color: var(--medium-gray);
}

.service-card ul li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: var(--light-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--medium-gray);
}

/* Price Cards */
.price-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white);
}

.price-card.featured h4,
.price-card.featured p {
    color: var(--white);
}

.price-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.price-card ul li {
    padding: 0.25rem 0;
    color: var(--medium-gray);
}

.price-card.featured ul li {
    color: var(--light-blue);
}

.price-card ul li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.price-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.price-card.featured .price {
    color: var(--white);
}

/* Team Cards */
.team-member {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h5 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Review Cards */
.review-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-card p {
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.review-card h5 {
    color: var(--dark-blue);
    text-align: right;
    margin-bottom: 0;
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    border-radius: 15px !important;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: var(--white);
    border: none;
    border-radius: 15px;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0 0 15px 15px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: var(--p-size);
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Gallery */
.gallery-section img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray), var(--dark-blue));
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--white);
}

.footer hr {
    border-color: var(--medium-gray);
    margin: 2rem 0 1rem;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--light-gray);
    padding: 1rem 0;
    margin-top: 76px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-icon {
    width: 20px;
    height: 20px;
}

/* Space Container */
.space-container {
    min-height: 60vh;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 76px;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-blue);
}

.timeline-item {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-blue);
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
    right: -11px;
}

.timeline-item:nth-child(even)::before {
    left: -11px;
}

/* Additional Card Styles for Extra Pages */
.tech-card,
.process-card,
.maintenance-card,
.success-card,
.innovation-card,
.spec-card,
.cert-card,
.custom-card,
.warranty-card,
.eco-card,
.info-card,
.case-card,
.career-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.tech-card:hover,
.process-card:hover,
.maintenance-card:hover,
.success-card:hover,
.innovation-card:hover,
.spec-card:hover,
.cert-card:hover,
.custom-card:hover,
.warranty-card:hover,
.eco-card:hover,
.info-card:hover,
.case-card:hover,
.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tech-card h5,
.process-card h5,
.maintenance-card h5,
.success-card h5,
.innovation-card h5,
.spec-card h5,
.cert-card h5,
.custom-card h5,
.warranty-card h5,
.eco-card h5,
.info-card h5,
.case-card h5,
.career-card h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.tech-card p,
.process-card p,
.maintenance-card p,
.success-card p,
.innovation-card p,
.spec-card p,
.cert-card p,
.custom-card p,
.warranty-card p,
.eco-card p,
.info-card p,
.case-card p,
.career-card p {
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.career-card span {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-blue) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple)) !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        width: calc(100% - 4rem);
        margin-left: 4rem;
    }
    
    .timeline-item::before {
        left: -31px;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 4rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .service-card,
    .feature-card,
    .price-card,
    .review-card {
        margin-bottom: 2rem;
    }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
