/* ===== 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; }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Form Status Messages */
.form-alert {
    padding: 20px 24px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: white;
}
.form-alert i { margin-right: 8px; }
.form-alert-success { background: #27ae60; }
.form-alert-error { background: #c0392b; }
.form-alert-warning { background: #e67e22; }
.form-alert-detail { margin-top: 8px; font-size: 0.8rem; opacity: 0.85; }

/* Honeypot */
.honeypot-field { position: absolute; left: -9999px; top: -9999px; }

/* Contact Layout */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 60px;
}

/* Contact Info */
.contact-info { padding-right: 80px; }

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

.contact-info-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-info-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--medium-grey);
    line-height: 1.8;
    margin-bottom: 50px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--black);
    font-size: 1rem;
    flex-shrink: 0;
    border-left: 3px solid var(--red);
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--medium-grey);
    margin-bottom: 6px;
}

.contact-detail-value {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--black);
}

.contact-detail-value a {
    text-decoration: none;
    color: var(--black);
    transition: var(--transition);
}

.contact-detail-value a:hover { color: var(--medium-grey); }

.contact-social { display: flex; gap: 16px; margin-top: 50px; }

.contact-social a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-social a:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.contact-social a .icon svg { height: 16px; width: auto; }

/* Contact Form */
.contact-form-wrapper {
    background: var(--lighter-grey);
    padding: 50px;
}

.contact-form-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 30px;
}

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

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--medium-grey);
    margin-bottom: 10px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--accent);
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--black);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--red);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--accent);
}

.form-textarea { min-height: 140px; resize: vertical; }

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

.form-submit {
    display: inline-block;
    padding: 16px 48px;
    background: var(--red);
    color: var(--white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
}

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

/* Map Section */
.map-section {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-grey);
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
}

.map-placeholder { text-align: center; }

.map-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
    color: var(--red);
}

.map-placeholder p {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--medium-grey);
}

.map-placeholder small {
    font-size: 0.75rem;
    color: var(--accent);
    margin-top: 8px;
    display: block;
}

/* ===== RESPONSIVE — CONTACT ===== */
@media (max-width: 1024px) {
    .contact-section { grid-template-columns: 1fr; gap: 60px; }
    .contact-info { padding-right: 0; }
}

@media (max-width: 768px) {
    .contact-section { padding: 60px 24px; }
    .contact-form-wrapper { padding: 36px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .map-section { height: 300px; }
}
