/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Allow text selection for contact information */
.footer-section h4,
.footer-section p {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: #8b7355;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8b7355;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.7), rgba(26, 32, 44, 0.8)), 
                url('../images/1646187885932457.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect width="1920" height="1080" fill="%23e2e8f0"/><g opacity="0.03"><path d="M1200 200 Q1400 300 1600 200 Q1700 400 1800 300 L1800 600 Q1600 500 1400 600 Q1200 500 1200 600 Z" fill="%232d3748"/><circle cx="1500" cy="700" r="150" fill="%234a5568"/><rect x="1300" y="800" width="200" height="100" fill="%23718096" rx="20"/></g></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 60px;
    margin-left: 80px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.5;
    max-width: 600px;
}

.hero-description {
    font-size: 1.1rem;
    color: #cbd5e0;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 550px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: #2d3748;
    transform: translateY(-2px);
}

/* Suits Section */
.suits-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.suits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="suitPattern" width="200" height="150" patternUnits="userSpaceOnUse"><rect width="200" height="150" fill="%23ffffff" opacity="0.5"/><g opacity="0.03"><rect x="20" y="20" width="60" height="80" fill="%23212529" rx="3"/><rect x="100" y="15" width="50" height="90" fill="%23343a40" rx="3"/><rect x="160" y="25" width="30" height="70" fill="%23495057" rx="2"/></g></svg>') repeat;
    opacity: 0.4;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #212529;
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 2px;
}

.suits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.suit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid rgba(44, 62, 80, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.suit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.suit-card:hover::before {
    transform: scaleX(1);
}

.suit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    border-color: rgba(44, 62, 80, 0.2);
}

.suit-card.featured {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    transform: scale(1.08);
    border-color: #8b7355;
}

.suit-card.featured .price {
    color: #ffffff;
}

.suit-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b7355;
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.suit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: #212529;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.suit-card.featured h3 {
    color: #ffffff;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 2.5rem;
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
}

.suit-card.featured .features-list li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.2rem;
}

.suit-card.featured .features-list li::before {
    color: #8b7355;
}

.select-btn {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
    border: 2px solid transparent;
    width: 100%;
}

.suit-card.featured .select-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    border-color: #8b7355;
}

.select-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.4);
    border-color: #8b7355;
}

.suit-card.featured .select-btn:hover {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    color: #1a1a1a;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="processPattern" width="300" height="200" patternUnits="userSpaceOnUse"><rect width="300" height="200" fill="%23ffffff"/><g opacity="0.04"><circle cx="50" cy="50" r="20" fill="%23212529"/><circle cx="150" cy="80" r="15" fill="%23343a40"/><circle cx="250" cy="60" r="18" fill="%23495057"/><rect x="30" y="120" width="40" height="30" fill="%236c757d" rx="3"/><rect x="130" y="140" width="35" height="25" fill="%23adb5bd" rx="2"/><rect x="230" y="130" width="30" height="35" fill="%23ced4da" rx="2"/></g></svg>') repeat;
    opacity: 0.3;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(44, 62, 80, 0.08);
    backdrop-filter: blur(10px);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.02), rgba(52, 73, 94, 0.02));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(44, 62, 80, 0.15);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 2.5rem;
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 3;
    font-family: 'Playfair Display', serif;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.4);
}

.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #212529;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.step p {
    color: #495057;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* Fabrics Section */
.fabrics-section {
    padding: 6rem 0;
    background: #fff;
}

.fabrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.fabric-card {
    background: #f8f8f8;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.fabric-card:hover {
    background: #8b7355;
    color: white;
    transform: translateY(-5px);
}

.fabric-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: 1px;
}

.fabric-card:hover h3 {
    color: white;
}

.fabric-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.fabric-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Expertise Section */
.expertise-section {
    padding: 6rem 0;
    background: #f8f8f8;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.expertise-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: 1px;
}

.expertise-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.expertise-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: white;
    border-left: 4px solid #8b7355;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: 1px;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.contact-section .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-details strong {
    color: #8b7355;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #333;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b7355;
    background: rgba(255, 255, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form button {
    background: #8b7355;
    color: white;
    border: none;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #6d5a42;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #8b7355;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8b7355;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .suits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .fabrics-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .suit-card {
        padding: 2rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Selection color */
::selection {
    background: #8b7355;
    color: white;
}

::-moz-selection {
    background: #8b7355;
    color: white;
}