/* ===== OMEGA CREATIONS — SHARED STYLES ===== */

/* Inline SVG Icon System */
.icon { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; line-height: 1; }
.icon svg { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; display: block; }
.icon svg[fill="none"] { fill: none; stroke: currentColor; }

/* Variables */
:root {
    --black: #1a1a1a;
    --dark-grey: #2d2d2d;
    --medium-grey: #6b6b6b;
    --light-grey: #f5f5f5;
    --lighter-grey: #fafafa;
    --white: #ffffff;
    --accent: #c8c8c8;
    --red: #c0392b;
    --red-light: rgba(192, 57, 43, 0.08);
    --red-glow: rgba(192, 57, 43, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 14px 60px;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--black);
}

.navbar-logo svg { width: 42px; height: 42px; }
.navbar-logo img { width: 42px; height: 42px; object-fit: contain; }

/* Footer logo */
.footer-brand .navbar-logo { color: white; }
.footer-brand .navbar-logo img { width: 36px; height: 36px; }
.footer-brand .navbar-logo svg { width: 36px; height: 36px; }

.navbar-logo span {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

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

.lang-switch {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 6px 14px;
    border: 1px solid var(--black);
    transition: var(--transition);
}

.lang-switch:hover { background: var(--black); color: var(--white); }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--black);
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ===== PAGE HEADER (services, portfolio, contact) ===== */
.page-header {
    padding: 160px 60px 80px;
    text-align: center;
    background: var(--lighter-grey);
}

.page-header-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.page-header-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.page-header-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--medium-grey);
    max-width: 550px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 60px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1.8;
    margin-top: 20px;
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 300;
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-contact-item i, .footer-contact-item .icon { margin-top: 4px; font-size: 0.85rem; color: var(--red); }
.footer-contact-item .icon svg { height: 14px; width: auto; }
.footer-contact-item a { color: #ffffff; text-decoration: none; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--red); }

.social-icons { display: flex; gap: 20px; margin-top: 30px; }

.social-icons a {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); text-decoration: none;
    transition: var(--transition); font-size: 0.9rem;
}
.social-icons a .icon svg { height: 16px; width: auto; }

.social-icons a:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--medium-grey);
    font-weight: 300;
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transition: opacity 0.8s ease; }
.fade-in.visible { opacity: 1; }

/* ===== RESPONSIVE — SHARED ===== */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 16px 24px; }
    .navbar.scrolled { padding: 12px 24px; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 24px;
        gap: 0;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        border-top: 1px solid rgba(0,0,0,0.06);
    }
    .nav-links.open { display: flex; }
    .nav-links li { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
    .nav-links li:last-child { border-bottom: none; padding-top: 20px; }
    .nav-links a { font-size: 0.95rem; letter-spacing: 1px; }
    .menu-toggle { display: flex; }
    .page-header { padding: 130px 24px 60px; }
    .page-header-title { font-size: 2.4rem; }
    .footer { padding: 60px 24px 30px; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .faq-container { padding: 0 24px; }
    .faq-title { font-size: 2rem; }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}
.faq-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}
.faq-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.5px;
}
.faq-subtitle {
    font-size: 0.95rem;
    color: #6b6b6b;
    text-align: center;
    max-width: 550px;
    margin: 0 auto 50px;
    line-height: 1.7;
}
.faq-list {
    display: flex;
    flex-direction: column;
}
.faq-item {
    border-top: 1px solid #e0e0e0;
}
.faq-item:last-child {
    border-bottom: 1px solid #e0e0e0;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.5;
    gap: 16px;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: #c0392b;
}
.faq-toggle {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: #1a1a1a;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-toggle::before {
    width: 14px;
    height: 1.5px;
}
.faq-toggle::after {
    width: 1.5px;
    height: 14px;
}
.faq-question:hover .faq-toggle::before,
.faq-question:hover .faq-toggle::after {
    background: #c0392b;
}
.faq-question[aria-expanded="true"] .faq-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer.open {
    max-height: 500px;
}
.faq-answer p {
    padding: 0 0 20px 36px;
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .faq-section { padding: 60px 0; }
    .faq-container { padding: 0 24px; }
    .faq-title { font-size: 1.8rem; }
    .faq-answer p { padding-left: 36px; }
}

/* ===== HOME PAGE STYLES ===== */

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-grey);
    position: relative;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 60px;
    right: 80px;
    width: 80px;
    height: 3px;
    background: var(--red);
    opacity: 0.4;
}

.hero-accent-line {
    position: absolute;
    bottom: 120px;
    left: 60px;
    width: 3px;
    height: 60px;
    background: var(--red);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 50px;
    background: rgba(245, 245, 245, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--black);
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--dark-grey);
    max-width: 550px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 16px 48px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    background: var(--red);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-cta:hover::before { opacity: 0.3; }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--medium-grey);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* Sections Common */
.section { padding: 120px 60px; }

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--black);
}

/* Intro Section */
.intro-section {
    padding: 100px 60px;
    background: var(--lighter-grey);
    text-align: center;
}
.intro-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 30px;
}
.intro-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--medium-grey, #6b6b6b);
    line-height: 1.9;
    max-width: 750px;
    margin: 0 auto;
}

/* Category Sections */
.category-section { padding: 100px 60px; }
.category-section:nth-child(even) { background: var(--lighter-grey); }

.category-row {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-row.reverse { flex-direction: row-reverse; }

.category-text { flex: 1; min-width: 0; }

.category-number {
    font-size: 5rem;
    font-weight: 200;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
}

.category-number::after {
    content: '';
    position: absolute;
    bottom: 8px; left: 0;
    width: 30px;
    height: 3px;
    background: var(--red);
    opacity: 0.5;
}

.category-name {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black);
}

.category-description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--medium-grey);
    line-height: 1.9;
    margin-bottom: 30px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.category-link:hover { gap: 16px; }
.category-link i, .category-link .icon { font-size: 0.7rem; transition: var(--transition); }
.category-link .icon svg { width: 12px; height: 12px; }

.category-images {
    flex: 1.2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    min-width: 0;
}

.category-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.category-img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 4/3;
}

.category-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 3px;
    background: var(--red);
    opacity: 0;
    transition: var(--transition);
}

.category-img:hover::after { opacity: 0.6; }

.slider-dots { display: none; }

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e0e0 0%, #c8c8c8 100%);
    color: var(--medium-grey);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-img:hover .img-placeholder { transform: scale(1.05); }

/* Why Us Section */
.why-us {
    background: var(--black);
    color: var(--white);
    padding: 120px 60px;
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
    opacity: 0.5;
}

.why-us .section-label { color: var(--red); }
.why-us .section-title { color: var(--white); }

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.why-us-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--red);
}
.why-us-icon .icon svg { height: 40px; width: auto; fill: currentColor; }
.why-us-icon .icon svg[fill="none"] { fill: none; stroke: currentColor; }

.why-us-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.why-us-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 140px 60px;
    text-align: center;
    background: var(--lighter-grey);
    position: relative;
}

.cta-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--medium-grey);
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 18px 56px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.cta-btn:hover {
    background: #a93226;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.25);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 100px 0;
    background: var(--lighter-grey, #fafafa);
}
.stats-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}
.stats-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.5px;
}
.stats-subtitle {
    font-size: 0.95rem;
    color: #6b6b6b;
    text-align: center;
    max-width: 550px;
    margin: 0 auto 60px;
    line-height: 1.7;
}
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
}
.stat-plus {
    font-size: 3.5rem;
    font-weight: 600;
    color: #c0392b;
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: #6b6b6b;
    margin-top: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== RESPONSIVE — HOME ===== */
@media (max-width: 1024px) {
    .category-row { gap: 50px; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1rem; }
    .intro-section { padding: 60px 24px; }
    .intro-title { font-size: 1.8rem; }
    .intro-text { font-size: 0.95rem; }
    .stats-section { padding: 60px 0; }
    .stats-container { padding: 0 24px; }
    .stats-title { font-size: 1.8rem; }
    .stats-grid { flex-direction: row; flex-wrap: wrap; gap: 30px; justify-content: center; }
    .stat-item { flex: 1 1 auto; min-width: 120px; }
    .stat-number, .stat-plus { font-size: 2.4rem; }
    .stat-label { font-size: 0.75rem; }
    .hero::after, .hero-accent-line { display: none; }
    .section { padding: 80px 24px; }
    .category-section { padding: 80px 24px; }
    .category-row, .category-row.reverse { flex-direction: column; gap: 40px; }
    .category-number { font-size: 3.5rem; }
    .category-name { font-size: 1.8rem; }

    .category-images {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 16px;
        scrollbar-width: none;
        height: 240px;
    }
    .category-images::-webkit-scrollbar { display: none; }
    .category-img {
        flex: 0 0 85%;
        height: 100%;
        aspect-ratio: auto !important;
        scroll-snap-align: start;
        border-radius: 4px;
    }
    .category-img:first-child { grid-column: auto; aspect-ratio: auto !important; }

    .slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
    .slider-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: var(--accent);
        border: none; padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .slider-dot.active { background: var(--red); transform: scale(1.2); }

    .section-title { font-size: 2.2rem; }
    .why-us { padding: 80px 24px; }
    .why-us-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-section { padding: 80px 24px; }
    .cta-title { font-size: 2.2rem; }
}
