/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

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

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

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #34495e;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

.btn-full {
    width: 100%;
}

/* Navigation */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.cta-nav {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 5px;
}

.cta-nav:hover {
    background: #c0392b !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .btn {
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
    padding: 120px 20px 60px;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Trust Bar */
.trust-bar {
    background: #f0f4f8;
    padding: 15px 0;
    border-bottom: 1px solid #e0e4e8;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-dark);
}

/* Categories */
.categories {
    padding: 80px 0;
}

.categories h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.category-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.category-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
}

/* Featured Products */
.featured {
    padding: 80px 0;
    background: var(--light-bg);
}

.featured h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-info .desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.product-info .features {
    text-align: left;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-info .features li {
    padding: 3px 0;
}

.center {
    text-align: center;
    margin-top: 50px;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--light-bg);
}

.process h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    padding: 30px 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 180px;
}

.step-num {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.step h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.step p {
    font-size: 13px;
    color: var(--text-light);
}

.step-arrow {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 700;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
}

.about-preview .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-preview .benefits {
    list-style: none;
    margin-bottom: 30px;
}

.about-preview .benefits li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.about-preview .benefits strong {
    color: var(--primary-color);
}

.placeholder {
    background: #e0e4e8;
    border-radius: 10px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.placeholder span {
    font-size: 60px;
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Products Page */
.products-page {
    padding: 60px 0;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.products-note {
    background: #fff9e6;
    border: 1px solid #ffcc00;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.products-note p {
    color: #665500;
    font-size: 14px;
}

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

.custom-request {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
}

.custom-request h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.custom-request p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Gallery Page */
.gallery-page {
    padding: 60px 0;
}

.gallery-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    height: 200px;
    background: #e8ecf1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.gallery-info {
    padding: 20px;
}

.gallery-info h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.gallery-info .location {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.gallery-info .client {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.gallery-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-light);
}

.instagram-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 10px;
}

.instagram-section h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* About Page */
.about-intro {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image .placeholder {
    width: 100%;
    max-width: 400px;
}

.about-text h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.credentials {
    margin-top: 30px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.credential-item:last-child {
    border-bottom: none;
}

.credential-icon {
    font-size: 30px;
}

.credential-item h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.credential-item p {
    font-size: 14px;
    margin: 0;
}

/* Process Detail */
.process-detail {
    padding: 80px 0;
    background: var(--light-bg);
}

.process-detail h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-detail > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.process-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.process-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

.process-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Us */
.why-us {
    padding: 80px 0;
}

.why-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
}

.why-icon {
    font-size: 45px;
    display: block;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial p:first-child {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial .client {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
}

/* Contact Page */
.contact-page {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info .intro {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 28px;
}

.contact-method h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.contact-method p {
    font-size: 14px;
    color: var(--text-light);
}

.contact-method .note {
    font-size: 13px;
    color: var(--accent-color);
}

.hours {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.hours h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hours p {
    font-size: 14px;
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
}

.contact-form h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about-preview .about-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-items {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta .btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
}

/* Blog Page Styles - Gallery Style */
.blog-page {
    padding: 40px 0;
}

.blog-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .blog-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-gallery {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
    background: #f5f5f5;
}

.blog-card .blog-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    transition: transform 0.4s;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-card .blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.blog-card .blog-category {
    font-size: 11px;
    color: #d4a574;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 18px;
    margin: 0;
    color: #fff;
    line-height: 1.3;
}

.blog-card .blog-date {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-top: 8px;
}

.btn-disabled {
    display: inline-block;
    padding: 10px 20px;
    background: #e0e0e0;
    color: #999;
    border-radius: 6px;
    font-size: 14px;
    cursor: default;
}
