*{margin:0;padding:0;box-sizing:border-box}:root{--background:#fff;--foreground:#0f0f0f;--card:#fafafa;--card-foreground:#0f0f0f;--muted:#f5f5f5;--muted-foreground:#737373;--border:#e5e5e5;--primary:#22c55e;--primary-dark:#16a34a;--primary-light:#4ade80;--secondary:#10b981;--accent:#f5f5f5;--accent-foreground:#171717;--destructive:#ef4444;--ring:#22c55e;--theme-primary:#22c55e;--theme-primary-dark:#16a34a;--theme-primary-light:#4ade80;--theme-secondary:#10b981;--theme-text:#0f0f0f;--theme-background:#fff;--theme-card:#fafafa;--theme-border:#e5e5e5;--theme-muted:#f5f5f5;--theme-muted-foreground:#737373}[data-theme="dark"]{--background:#0d0d0d;--foreground:#fafafa;--card:#1a1a1a;--card-foreground:#fafafa;--muted:#262626;--muted-foreground:#b3b3b3;--border:#333;--accent:#1f1f1f;--accent-foreground:#fafafa;--theme-text:#fafafa;--theme-background:#0d0d0d;--theme-card:#1a1a1a;--theme-border:#333;--theme-muted:#262626;--theme-muted-foreground:#b3b3b3}body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;line-height:1.6;color:var(--theme-text);background-color:var(--theme-background);transition:background-color .3s ease , color .3s ease}.container{max-width:1200px;margin:0 auto;padding:0 1rem}.gradient-text{background:linear-gradient(135deg,var(--theme-primary-light) 0%,var(--theme-secondary) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;color:transparent}.animate-fade-up{animation:fadeUp .6s ease forwards;opacity:0;transform:translateY(20px)}.delay-200{animation-delay:200ms}.delay-300{animation-delay:300ms}@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.btn{display:inline-flex;align-items:center;justify-content:center;padding:.75rem 1.5rem;border:none;border-radius:.5rem;font-size:1rem;font-weight:500;text-decoration:none;cursor:pointer;transition:all .3s ease;position:relative;overflow:hidden}.btn-primary{background:linear-gradient(135deg,var(--theme-primary) 0%,var(--theme-secondary) 100%);color:#fff}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 25px rgba(34,197,94,.3)}.btn::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:rgba(255,255,255,.1);transition:left .3s ease}.btn:hover::before{left:0}.header{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(var(--theme-background),.95);backdrop-filter:blur(10px);border-bottom:1px solid var(--theme-border);transition:all .3s ease}.nav-wrapper{display:flex;align-items:center;justify-content:space-between;height:4rem}.logo img{height:50px;width:auto}.nav{display:flex;align-items:center;gap:2rem}.nav-list{display:flex;list-style:none;gap:2rem;margin:0}.nav-link{color:var(--theme-text);text-decoration:none;font-weight:500;transition:color .3s ease;position:relative}.nav-link:hover{color:var(--theme-primary)}.nav-link::after{content:'';position:absolute;bottom:-5px;left:0;width:0;height:2px;background:var(--theme-primary);transition:width .3s ease}.nav-link:hover::after{width:100%}.theme-toggle{background:none;border:1px solid var(--theme-border);border-radius:.5rem;padding:.5rem;cursor:pointer;color:var(--theme-text);transition:all .3s ease}.theme-toggle:hover{background:var(--theme-muted)}.mobile-menu-toggle{display:none;flex-direction:column;background:none;border:none;cursor:pointer;padding:.5rem}.mobile-menu-toggle span{width:25px;height:3px;background:var(--theme-text);margin:3px 0;transition:.3s}.mobile-menu{display:none;position:fixed;top:4rem;left:0;right:0;background:var(--theme-background);border-bottom:1px solid var(--theme-border);z-index:999}.mobile-nav-list{list-style:none;padding:1rem}.mobile-nav-link{display:block;padding:1rem;color:var(--theme-text);text-decoration:none;border-bottom:1px solid var(--theme-border)}.hero{position:relative;height:100vh;display:flex;align-items:center;justify-content:center;overflow:hidden}.hero-bg{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-2}.hero-bg video,.hero-bg img{width:100%;height:100%;object-fit:cover}.hero-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.6);z-index:-1}.hero-content{text-align:center;color:#fff;z-index:1}.hero-title{font-size:clamp(2.5rem,8vw,5rem);font-weight:800;margin-bottom:1rem;line-height:1.1}.hero-description{font-size:1.25rem;margin-bottom:2rem;max-width:600px;opacity:.9}section{padding:5rem 0}.section-header{text-align:center;margin-bottom:3rem}.section-title{font-size:clamp(2rem,5vw,3rem);font-weight:700;margin-bottom:1rem}.section-description{font-size:1.125rem;color:var(--theme-muted-foreground);max-width:700px;margin:0 auto}.services{background:var(--theme-background)}.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}.service-card{background:var(--theme-card);border-radius:1rem;overflow:hidden;transition:transform .3s ease , box-shadow .3s ease;border:1px solid var(--theme-border)}.service-card:hover{transform:translateY(-5px);box-shadow:0 20px 40px rgba(0,0,0,.1)}.service-image{height:250px;overflow:hidden}.service-image img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.service-card:hover .service-image img{transform:scale(1.05)}.service-content{padding:1.5rem}.service-title{font-size:1.25rem;font-weight:600;margin-bottom:.5rem;color:var(--theme-text)}.service-description{color:var(--theme-muted-foreground);line-height:1.6}.gallery{background:var(--theme-muted)}.gallery-grid{display:flex;flex-wrap:wrap;gap:1.5rem;margin-top:2rem}@media (max-width:1024px){.gallery-item{flex:1 1 calc(50% - .75rem)}.gallery-item-large{flex:1 1 calc(50% - .75rem)}}.gallery-item{flex:1 1 calc(33.333% - 1rem);position:relative;aspect-ratio:1;overflow:hidden;border-radius:1rem;cursor:pointer;border:2px solid transparent;background:linear-gradient(135deg,var(--theme-primary) 0%,var(--theme-secondary) 100%);padding:2px;min-width:250px;max-width:350px}.gallery-item img{width:100%;height:100%;object-fit:cover;border-radius:.875rem;transition:transform .3s ease}.gallery-item:hover img{transform:scale(1.05)}.gallery-overlay{position:absolute;top:2px;left:2px;right:2px;bottom:2px;background:linear-gradient(to top,rgba(34,197,94,.4) 0%,transparent 100%);opacity:0;transition:opacity .3s ease;border-radius:.875rem}.gallery-item:hover .gallery-overlay{opacity:1}.gallery-item-large{flex:1 1 calc(66.666% - .5rem);max-width:720px}.about{background:var(--theme-background)}.about-content{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}.about-image img{width:100%;height:400px;object-fit:cover;border-radius:1rem}.about-text p{margin-bottom:1.5rem;color:var(--theme-muted-foreground);font-size:1.125rem;line-height:1.7}.contact{background:var(--theme-muted)}.contact-content{display:grid;grid-template-columns:1fr 1fr;gap:3rem}.contact-info{space-y:2rem}.contact-item{margin-bottom:2rem}.contact-item h3{font-size:1.25rem;font-weight:600;margin-bottom:.5rem;color:var(--theme-text)}.contact-item p{color:var(--theme-muted-foreground);margin-bottom:.25rem}.contact-map{margin-top:2rem}.contact-map img{width:100%;height:200px;object-fit:cover;border-radius:.5rem}.contact-form{background:var(--theme-card);padding:2rem;border-radius:1rem;border:1px solid var(--theme-border)}.form-group{margin-bottom:1.5rem}.form-group label{display:block;margin-bottom:.5rem;font-weight:500;color:var(--theme-text)}.form-group input,.form-group textarea{width:100%;padding:.75rem;border:1px solid var(--theme-border);border-radius:.5rem;background:var(--theme-background);color:var(--theme-text);font-size:1rem;transition:border-color .3s ease , box-shadow .3s ease}.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--theme-primary);box-shadow:0 0 0 3px rgba(34,197,94,.1)}.form-group textarea{min-height:120px;resize:vertical}.footer{background:var(--theme-card);border-top:1px solid var(--theme-border);padding:3rem 0 1rem}.footer-content{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-bottom:2rem}.footer-section h3{font-size:1.125rem;font-weight:600;margin-bottom:1rem;color:var(--theme-text)}.footer-section ul{list-style:none}.footer-section ul li{margin-bottom:.5rem}.footer-section ul li a{color:var(--theme-muted-foreground);text-decoration:none;transition:color .3s ease}.footer-section ul li a:hover{color:var(--theme-primary)}.footer-logo{display:flex;align-items:center;gap:.5rem;margin-bottom:1rem;font-weight:600;font-size:1.125rem}.footer-section p{color:var(--theme-muted-foreground);line-height:1.6}.social-links{display:flex;gap:1rem;margin-top:1rem}.social-links a{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;background:var(--theme-muted);border-radius:50%;text-decoration:none;transition:background-color .3s ease}.social-links a:hover{background:var(--theme-primary)}.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:2rem;border-top:1px solid var(--theme-border);color:var(--theme-muted-foreground)}.footer-links{display:flex;gap:2rem}.footer-links a{color:var(--theme-muted-foreground);text-decoration:none;transition:color .3s ease}.footer-links a:hover{color:var(--theme-primary)}.modal{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.8);z-index:2000;align-items:center;justify-content:center}.modal.active{display:flex}.modal-content{position:relative;max-width:95vw;max-height:95vh;background:transparent;border-radius:1rem;overflow:hidden;display:flex;align-items:center;justify-content:center}.close{position:absolute;right:32px;top:32px;width:32px;height:32px;opacity:.3;z-index:1}.close:hover{opacity:1}.close:before,.close:after{position:absolute;left:15px;content:' ';height:33px;width:2px;background-color:#fff}.close:before{transform:rotate(45deg)}.close:after{transform:rotate(-45deg)}.modal-content img{max-width:100%;max-height:100%;width:auto;height:auto;display:block;object-fit:contain;border-radius:.5rem;box-shadow:0 20px 40px rgba(0,0,0,.3)}@media (max-width:768px){.nav-list{display:none}.mobile-menu-toggle{display:flex}.mobile-menu.active{display:block}.hero-title{font-size:2.5rem}.hero-description{font-size:1rem}.services-grid{grid-template-columns:1fr}.gallery-item{flex:1 1 100%;min-width:unset}.gallery-item-large{flex:1 1 100%}.about-content{grid-template-columns:1fr;gap:2rem}.contact-content{grid-template-columns:1fr;gap:2rem}.footer-content{grid-template-columns:1fr;text-align:center}.footer-bottom{flex-direction:column;gap:1rem;text-align:center}.footer-links{justify-content:center}}@media (max-width:480px){.container{padding:0 .5rem}section{padding:3rem 0}.hero{height:100vh}.contact-form{padding:1rem}}html{scroll-behavior:smooth}img{transition:opacity .3s ease}img[data-loaded="false"]{opacity:0}img[data-loaded="true"]{opacity:1}