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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 40px;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #ff3742;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 2rem;
}

.fearless {
    color: #ff4757;
    font-weight: 900;
}

.creativity {
    color: white;
    font-style: italic;
    font-weight: 300;
}

.hero-subtitle {
    color: #ccc;
    font-size: 1.8rem;
    font-weight: 300;
    margin-left: 2rem;
    margin-bottom: 4rem;
}

.hero-graphics {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-icon-1, .hero-icon-2, .hero-icon-3 {
    width: 80px;
    height: 80px;
    opacity: 0.8;
}

.hero-circle {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.2) 0%, transparent 70%);
}

.craft-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    z-index: 1;
}

.craft-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.craft-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.6);
}

.craft-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.craft-content h2 {
    color: white;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: lowercase;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.learn-more-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #ff3742;
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Products Section */
.products-section {
    padding: 8rem 0;
    background: #1a1a1a;
    color: white;
}

.products-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.product-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #ff4757;
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-item p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-btn {
    background: transparent;
    color: #ff4757;
    border: 2px solid #ff4757;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #ff4757;
    color: white;
}

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

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

.expertise-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

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

.expertise-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expertise-btn:hover {
    background: #ff3742;
    transform: translateY(-2px);
}

.expertise-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.expertise-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.expertise-icon svg {
    width: 100%;
    height: 100%;
}

.expertise-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.expertise-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.small-btn {
    background: transparent;
    color: #ff4757;
    border: 2px solid #ff4757;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.small-btn:hover {
    background: #ff4757;
    color: white;
}

/* Quote Section */
.quote-section {
    padding: 8rem 0;
    background: #2d2d2d;
    color: white;
}

.quote-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-marks {
    width: 100px;
    height: 100px;
    margin: 0 auto 3rem;
}

.quote-marks svg {
    width: 100%;
    height: 100%;
}

.quote-content blockquote {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-style: italic;
}

.quote-content cite {
    color: #feca57;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Work Section */
.work-section {
    padding: 8rem 0;
    background: #1a1a1a;
    color: white;
}

.work-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

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

.work-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: all 0.3s ease;
}

.work-item.large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.work-item:hover .work-overlay {
    transform: translateY(0);
}

.work-item:hover img {
    transform: scale(1.1);
}

.work-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.work-overlay p {
    color: #ccc;
}

.view-all-btn {
    display: block;
    margin: 0 auto;
    background: transparent;
    color: #ff4757;
    border: 2px solid #ff4757;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #ff4757;
    color: white;
}

/* Awards Section */
.awards-section {
    padding: 8rem 0;
    background: white;
}

.awards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.awards-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.awards-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.awards-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.awards-btn:hover {
    background: #ff3742;
    transform: translateY(-2px);
}

.awards-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Insights Section */
.insights-section {
    padding: 8rem 0;
    background: #1a1a1a;
    color: white;
}

.insights-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

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

.insight-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.insight-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

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

.insight-content {
    padding: 2rem;
}

.insight-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.insight-content p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.insight-date {
    color: #ff4757;
    font-size: 0.9rem;
    font-weight: 500;
}

.view-all-insights-btn {
    display: block;
    margin: 0 auto;
    background: transparent;
    color: #ff4757;
    border: 2px solid #ff4757;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-insights-btn:hover {
    background: #ff4757;
    color: white;
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 3rem 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.partners-grid img {
    width: 100%;
    height: 50px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.partners-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: #0d0d0d;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-info address {
    font-style: normal;
    color: #ccc;
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ff4757;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-graphics {
        display: none;
    }
    
    .about-content,
    .expertise-content,
    .awards-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .work-item.large {
        grid-column: span 1;
        aspect-ratio: 1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .craft-content h2 {
        font-size: 2.5rem;
    }
    
    .about-text h2,
    .expertise-text h2,
    .awards-text h2,
    .products-section h2,
    .work-section h2,
    .insights-section h2 {
        font-size: 2.5rem;
    }
    
    .quote-content blockquote {
        font-size: 1.8rem;
    }
}

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

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

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ff4757;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff3742;
}
