/* ===================================
   Seif Clothing - Global Stylesheet
   Premium Fashion & Textile Manufacturing
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #1D2F40;
    --secondary-color: #F2F2F2;
    --text-color: #757575;
    --accent-color: #A6587C;
    --accent-dark: #7D405C;
}

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

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

h1, h2, h3, h4, h5 {
    font-family: 'Fira Sans', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--text-color);
    text-decoration: none;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color) !important;
    padding: 1.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
}


.navbar-nav .nav-link {
    color: white !important;
    margin: 0 1rem;
    font-weight: 500;
}

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

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--accent-dark);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 0.8rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(29, 47, 64, 0.7), rgba(29, 47, 64, 0.7)), url('https://images.unsplash.com/photo-1558769132-cb1aea3c70a1?w=1200');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(29, 47, 64, 0.7), rgba(29, 47, 64, 0.7)), url('https://images.unsplash.com/photo-1558769132-cb1aea3c70a1?w=1200');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 10rem 0;
    text-align: center;
}

.hero-section h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-section p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Section Labels */
.section-label {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Feature Cards */
.feature-card {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: -50px;
}

.feature-card h5 {
    color: white;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
}

.about-section h2 {
    font-size: 2.5rem;
    margin: 1rem 0 2rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.5rem 0;
}

.check-list i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Stats Section */
.stats-section {
    background-color: #8A9BA8;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.stats-section h3 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stats-section p {
    color: white;
    font-size: 1rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: white;
}

.service-card {
    border: 1px solid #E0E0E0;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
    text-align: center;
    background-color: white;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h5 {
    margin: 1rem 0;
    font-size: 1.3rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Partners Section */
.partners-section {
    background-color: var(--primary-color);
    padding: 3rem 0;
}

.partners-section img {
    filter: brightness(0) invert(1);
    opacity: 0.7;
    max-height: 60px;
}

/* Price Section */
.price-section {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

.price-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.price-feature {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
}

.price-feature i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 6rem 0;
    background-color: white;
    text-align: center;
}

.testimonial-section i.bi-quote {
    font-size: 3rem;
    color: var(--accent-color);
}

.testimonial-content {
    max-width: 800px;
    margin: 2rem auto;
    font-style: italic;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background-color: #8A9BA8;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 2rem;
}

/* Projects Section */
.projects-section {
    padding: 6rem 0;
    background-color: white;
}

.project-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.project-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    transform: translateY(60%);
    transition: all 0.3s;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h5 {
    color: white;
    margin-bottom: 1rem;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

/* Team Section */
.team-section {
    padding: 6rem 0;
    background-color: white;
}

.team-card {
    text-align: center;
    margin-bottom: 2rem;
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.team-card h5 {
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: white;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-info-card h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-card p {
    margin: 0;
    color: var(--text-color);
}

.map-container {
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
}

.social-contact {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-contact a {
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-contact a:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
}

/* Forms */
.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    padding: 0.8rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(166, 88, 124, 0.25);
}

/* Quote Page Specific */
.quote-section {
    padding: 6rem 0;
    background-color: white;
}

.info-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.info-card h5 {
    margin-bottom: 1rem;
}

.info-card p {
    margin-bottom: 0.5rem;
}

.info-card i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.quote-benefits {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.quote-benefits ul {
    list-style: none;
    padding: 0;
}

.quote-benefits li {
    padding: 0.5rem 0;
}

.quote-benefits i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Project Form Section */
.project-form-section {
    padding: 6rem 0;
    background-color: white;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

/* How We Work Section */
.how-we-work-section {
    padding: 6rem 0;
    background-color: white;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

.project-section {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

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

.footer h5, .footer h4 {
    color: white;
    margin-bottom: 1.5rem;
}


.footer a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
}

.footer .social-links a:hover {
    background-color: var(--accent-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #B0B0B0;
}

/* Login Page Specific Styles */
.login-container {
    min-height: 100vh;
    display: flex;
}

.left-column {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2A4558 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: white;
}

.logo-section {
    text-align: center;
}

.logo {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


.brand-name {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Fira Sans', sans-serif;
}

.brand-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-top: 1rem;
    max-width: 400px;
}

.right-column {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.login-form-wrapper {
    width: 100%;
    max-width: 450px;
}

.login-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.login-form-wrapper p {
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
}

.forgot-password {
    text-align: right;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

.forgot-password a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.forgot-password a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.btn-login {
    background-color: var(--accent-color);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 88, 124, 0.3);
}

.signup-link {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-color);
}

.signup-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Form Messages & Spinner */
.form-message {
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1.5px solid transparent;
    transition: background 0.2s, border 0.2s;
}

.form-message svg {
    margin-bottom: 16px;
    width: 48px;
    height: 48px;
}

.form-message h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.form-message p {
    margin: 0;
}

.success-message {
    background: linear-gradient(90deg, #4ade80 80%, #bbf7d0 100%);
    color: var(--primary-color);
    border-color: #4ade80;
}

.success-message svg {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.success-message h3 {
    color: var(--primary-color);
}

.error-message {
    background: linear-gradient(90deg, #ef4444 80%, #ffbdbd 100%);
    color: white;
    border-color: #ef4444;
}

.error-message svg {
    color: #fff;
    margin-bottom: 0.5rem;
}

.error-message h3 {
    color: white;
}

.button-loader {
    display: inline-block;
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 20px;
    height: 20px;
}

.path {
    stroke: #ffffff;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* ===================================
   Responsive Styles
   =================================== */

@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .login-container {
        flex-direction: column;
    }
    
    .left-column {
        min-height: 40vh;
        padding: 2rem;
    }
    
    .logo {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .brand-subtitle {
        font-size: 1rem;
    }
    
    .right-column {
        min-height: 60vh;
        padding: 2rem;
    }
    
    .login-form-wrapper h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 6rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-section h2,
    .services-section h2,
    .projects-section h2 {
        font-size: 2rem;
    }
    
    .stats-section h3 {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .left-column {
        padding: 1.5rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .brand-subtitle {
        font-size: 0.9rem;
    }
    
    .right-column {
        padding: 1.5rem;
    }
    
    .login-form-wrapper h2 {
        font-size: 1.75rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}

