﻿:root {
    --primary: #ea580c; 
    --primary-hover: #c2410c;
    --primary-light: #fff7ed;
    --text-main: #111827;
    --text-muted: #4b5563;
    --bg-main: #ffffff;
    --bg-alt: #f3f4f6;
    --bg-card: #ffffff;
    --border: #e5e7eb;
    --border-strong: #d1d5db;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-md: 12px;
    --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text-main); background-color: var(--bg-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.wrapper-gray { background-color: var(--bg-alt); padding: 50px 0; }

.eyebrow { display: inline-block; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); background: var(--primary-light); padding: 8px 16px; border-radius: 100px; margin-bottom: 20px; border: 1px solid rgba(234, 88, 12, 0.2); }
h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.01em;}
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
p { font-size: 1.125rem; color: var(--text-muted); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; font-weight: 600; border-radius: var(--radius-md); transition: all 0.2s ease-in-out; cursor: pointer; font-size: 1.125rem; border: none;}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4); }
.btn-nav { padding: 10px 24px; font-size: 1rem; }

.navbar { padding: 4px 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; overflow: hidden; }
.navbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 70px; }
.brand-logo { height: 220px; width: auto; object-fit: contain; mix-blend-mode: multiply; margin: -75px 0 -75px -30px; }
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; align-items: center; gap: 32px; font-weight: 500; font-size: 1rem;}
.nav-links a:hover { color: var(--primary); }

.card-panel { background: var(--bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border); overflow: hidden; }
.outlined { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.framed { border: 8px solid #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.framed img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-container { display: flex; align-items: stretch; gap: 40px; padding: 60px; }
.hero-content { flex: 1; align-self: center; } 
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 40px; }
.contact-info { display: flex; flex-direction: column; }
.contact-info .label { font-size: 0.875rem; color: var(--text-muted); font-weight: 500;}
.contact-info .phone-number { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.hero-image { flex: 0.9; display: flex; align-items: stretch; }
.hero-image .framed { width: 100%; display: flex; flex-direction: column; flex: 1; }
.hero-image .framed img { flex: 1; object-fit: cover; height: 100%; width: 100%; }

.services { padding: 80px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto; margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.service-card { padding: 0; display: flex; flex-direction: column; overflow: hidden; position: relative; }
.service-img-wrapper { width: 100%; aspect-ratio: 16/10; border-bottom: 1px solid var(--border); }
.service-img-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-content { padding: 32px; flex: 1; display: flex; flex-direction: column;}
.service-content h3 { color: var(--primary); }

.about { padding: 80px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.feature-card { padding: 40px; text-align: center; display: flex; flex-direction: column; align-items: center;}
.feature-icon { font-size: 2.5rem; font-weight: 800; color: #fff; background: var(--primary); width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);}

.contact { padding: 80px 0; }
.contact-panel { display: flex; overflow: hidden; padding: 0; }
.contact-info-block { flex: 1; background: var(--bg-alt); padding: 60px; border-right: 1px solid var(--border); }
.direct-contact { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border-strong); }
.direct-contact span { display: block; font-weight: 500; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px;}
.direct-contact .phone-number { font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.contact-form-block { flex: 1; padding: 60px; background: #fff; }

form { display: flex; flex-direction: column; gap: 20px;}
.form-row { display: flex; gap: 20px; }
.input-group { flex: 1; text-align: left; }
.input-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-main);}
.input-group input, .input-group select { width: 100%; padding: 14px 16px; border: 1px solid var(--border-strong); background: #f9fafb; border-radius: var(--radius-md); font-size: 1rem; font-family: inherit; transition: all 0.2s;}
.input-group input:focus, .input-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); background: #fff;}
.btn-block { width: 100%; padding: 16px; margin-top: 10px; font-size: 1.125rem;}

footer { padding: 40px 0; border-top: 1px solid var(--border); background: var(--bg-alt); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.brand-logo-footer { height: 120px; mix-blend-mode: multiply; margin: -40px 0; filter: grayscale(1); opacity: 0.6; }
.footer-copy { color: var(--text-muted); font-size: 0.9rem; font-weight: 500;}

@media (max-width: 900px) {
    .navbar { padding: 12px 0; }
    .navbar-inner { min-height: 44px; }
    .brand-logo { height: 120px; margin: -35px 0 -35px -15px; }
    .nav-links { display: none; }
    .btn-nav { padding: 8px 16px; font-size: 0.95rem; }
    h1 { font-size: 2.25rem; }
    .hero-container { flex-direction: column; padding: 40px 24px; gap: 30px;}
    .hero-actions { flex-direction: column; align-items: stretch; text-align: center; gap: 20px;}
    .hero-image { display: block; width: 100%; }
    .hero-image .framed { min-height: 250px; }
    
    .contact-panel { flex-direction: column; }
    .contact-info-block { padding: 40px 24px; border-right: none; border-bottom: 1px solid var(--border); }
    .contact-form-block { padding: 40px 24px; }
    .form-row { flex-direction: column; gap: 20px;}
    .footer-inner { flex-direction: column; gap: 20px; text-align: center;}
}



.gallery-section { padding: 80px 20px; background-color: var(--bg-dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
.gallery-item { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.4); border: 2px solid var(--gray); transition: transform 0.3s; }
.gallery-item:hover { transform: translateY(-5px); border-color: var(--primary); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; }

/* Lightbox Styles */
.lightbox-modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.85); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox-modal.active { opacity: 1; pointer-events: all; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.5); object-fit: contain; }
.lightbox-close { position: absolute; top: -40px; right: 0; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; transition: color 0.2s; }
.lightbox-close:hover { color: var(--primary); }
