:root{--red: #be0000;--calm-gray: #e5e5e5;--calm-blue: #a9c1d9;--calm-green: #27a92c;--blue: #025dfb;--orange: #fe6805;--navy: #1c417f;--bg-start: #be0000;--bg-end: #a9c1d9;--glass: rgba(255, 255, 255, .06);--glass-strong: rgba(255, 255, 255, .9);--radius: 10px;--max-width: 960px;--transition: .3s;--font-family--web: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial}body,html{margin:0;padding:0;font-family:var(--font-family--web);scroll-behavior:smooth;background:var(--glass-strong);color:#333}.navbar{display:flex;justify-content:space-between;align-items:center;padding:1rem 2rem;background:var(--glass-strong);color:#fff;position:sticky;top:0;z-index:1000;box-shadow:0 4px 6px #0000001a}.navbar-logo a{color:#000;font-size:1.5rem;font-weight:700;text-decoration:none}.navbar-menu{display:flex;list-style:none;gap:1.5rem}.navbar-menu a{color:#000;text-decoration:none;font-weight:700;transition:color var(--transition)}.navbar-menu a:hover{color:var(--calm-green)}.navbar-toggle{display:none;background:none;border:none;color:#000;font-size:1.5rem;cursor:pointer}.navbar-menu.open{display:flex;flex-direction:column;gap:1rem;position:absolute;top:100%;left:0;width:100%;background:var(--glass-strong);padding:1rem;box-shadow:0 4px 6px #0000001a}.navbar-menu li{position:relative}.submenu{list-style:none;padding:.5rem 1rem;margin:0;position:absolute;top:100%;left:0;background:#fff;box-shadow:0 4px 6px #0000001a;border-radius:.5rem;display:none;flex-direction:column;z-index:1000}.navbar-menu li:hover .submenu,.submenu:hover{display:flex}.submenu li{padding:.5rem 0}.submenu li a{text-decoration:none;color:#333;font-size:.9rem;transition:color var(--transition)}.submenu li a:hover{color:var(--calm-green)}.submenu-toggle{background:none;border:none;color:#000;font-weight:700;cursor:pointer;padding:0;font-family:inherit;font-size:inherit;text-decoration:none}.submenu-toggle:hover{color:var(--calm-green)}.hero-content{display:flex;align-items:center;justify-content:space-between;height:100vh}.hero-text{flex:1;padding:2rem;display:flex;flex-direction:column;justify-content:center;z-index:2}.hero-text h1{font-size:2rem;text-align:center;margin-bottom:1rem;text-shadow:3px 3px 6px rgba(0,0,0,.2);letter-spacing:1px;color:var(--calm-green)}.hero-text p{font-size:1.3rem;text-align:center;margin-bottom:2rem;line-height:1.8}.hero-button{align-self:center;background:var(--calm-green);color:#fff;padding:1rem 2rem;border-radius:var(--radius);text-decoration:none;font-weight:700;font-size:1.2rem;box-shadow:0 4px 6px #0000001a;transition:background var(--transition),transform var(--transition)}.hero-button:hover{background:#03a903;transform:scale(1.05)}.hero-image{flex:1;position:relative;height:100%}.hero-image:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(to right,#fff,#fff0);z-index:1}.hero-logo{margin:0 auto -.5rem;width:100px;height:auto}.hero-text{text-align:center}.hero-imgpresetation{width:100%;height:100%;object-fit:cover;z-index:0}@keyframes bounce{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}.services{padding:2rem;text-align:center}.services h2{font-size:2.5rem;margin-bottom:2rem;color:var(--black)}.services-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,auto);gap:1.2rem;grid-template-areas:"service-1 service-2 service-3" ".service-4 service-5"}.service-card{position:relative;overflow:hidden;border-radius:var(--radius);box-shadow:0 4px 6px #0000001a;transition:transform .3s ease,box-shadow .3s ease}.service-card:hover{transform:scale(1.05);box-shadow:0 6px 8px #0003}.service-image{width:100%;height:200px;object-fit:cover}.service-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:#00000080;color:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;opacity:1;transition:opacity .3s ease}.service-overlay h3{font-size:1.5rem;margin:0}.service-overlay p{font-size:1rem;margin:.5rem 0 0}.service-1{grid-area:service-1}.service-2{grid-area:service-2}.service-3{grid-area:service-3}.service-4{grid-area:service-4}.service-5{grid-area:service-5}.service-page{display:flex;flex-direction:column;min-height:100vh}.service-content{padding:2rem;max-width:800px;margin:0 auto;text-align:justify}.service-content h1{font-size:2.5rem;color:var(--blue);margin-bottom:1rem}.service-content p{font-size:1.2rem;line-height:1.8;color:#333}.read-more-button{background:var(--blue);color:#fff;padding:.5rem 1rem;border:none;border-radius:var(--radius);cursor:pointer;transition:background var(--transition)}.read-more-button:hover{background:var(--calm-green)}.service-card h3{font-size:1.3rem;color:var(--calm-gray);margin-bottom:.5rem;text-transform:uppercase;letter-spacing:1px}.service-card p{font-size:1.1rem;text-align:justify;color:#626060;line-height:1.2;margin-bottom:1rem}.contact h2{text-align:left;padding-left:25px;color:var(--calm-green)}.contact-container{display:flex;gap:2rem;align-items:flex-start;justify-content:center;max-width:900px;margin:0 auto;padding:1rem}.contact-info{flex:1;color:#333;font-size:1.1rem;line-height:1.6;padding-right:1rem}.contact-form{flex:1;display:flex;flex-direction:column;gap:1rem}.contact-form input,.contact-form select,.contact-form button{padding:.8rem;border-radius:var(--radius);border:1px solid #ccc;font-size:1rem}.contact-form button{background:var(--calm-green);color:#fff;cursor:pointer;transition:background var(--transition),transform var(--transition)}.contact-form button:hover{background:#03a903;transform:scale(1.05)}.media-section{margin-top:3rem;text-align:center}.media-gallery{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}.gallery-image{width:200px;border-radius:var(--radius);box-shadow:0 4px 6px #0000001a}.gallery-video{width:300px;border-radius:var(--radius);box-shadow:0 4px 6px #0000001a}.contact-h2{font-size:2rem;text-align:center;margin-bottom:1rem;text-shadow:3px 3px 6px rgba(0,0,0,.2);letter-spacing:1px;color:var(--calm-green)}@media(max-width:1024px){.hero h1{font-size:3rem}.hero p{font-size:1.4rem}.services h2{font-size:2.2rem}.gallery-image{width:180px}.gallery-video{width:280px}}@media(max-width:768px){.hero h1{font-size:2.5rem}.hero p{font-size:1.2rem}.services h2{font-size:2rem}.gallery-image{width:150px}.gallery-video{width:250px}.navbar-menu{display:none}.navbar-toggle{display:block}.navbar-contact{display:none}.services-grid{grid-template-columns:1fr;grid-template-areas:"service-1" "service-2" "service-3" "service-4" "service-5"}.contact-container{flex-direction:column;padding:0 1rem}.contact-info{padding-right:0}.contact-form button{margin-bottom:15px}}@media(max-width:480px){.hero h1{font-size:2rem}.hero p{font-size:1rem}.hero-button{font-size:1rem;padding:.8rem 1.5rem}.gallery-image{width:120px}.gallery-video{width:200px}.services h2{font-size:1.8rem}.contact-form{max-width:100%;padding:0 1rem}.services-grid{grid-template-columns:1fr;grid-template-areas:"service-1" "service-2" "service-3" "service-4" "service-5"}}.navbar-header{display:flex;flex-direction:column;align-items:center;gap:.5rem}.navbar-logo a{font-size:1.5rem;font-weight:700;text-decoration:none;color:#000}.navbar-contact a{font-size:1rem;color:#27a92c;text-decoration:none}.navbar-qr{display:flex;flex-direction:column;align-items:center}.navbar-qr img{width:60px;height:60px}.navbar-qr p{font-size:.8rem;color:#333;text-align:center;margin-top:.2rem}@media(max-width:1024px){.hero-content{flex-direction:column;text-align:center}.hero-text{padding:1rem}.hero-text h1{font-size:2.5rem}.hero-text p{font-size:1.4rem}.hero-image{display:none}}@media(max-width:768px){.hero-text h1{font-size:2rem}.hero-text p{font-size:1.2rem}.hero-button{font-size:1rem;padding:.8rem 1.5rem}.hero-image{height:40vh;display:none}.services{padding:3rem 1.5rem;margin-bottom:3rem}.navbar-contact{display:block}}@media(max-width:480px){.hero-text h1{font-size:1.8rem}.hero-text p{font-size:1rem}.hero-image{display:none}.navbar-contact{display:block}}.footer{background:#b6b3b3;color:var(--glass-strong);text-align:center;padding:2rem 0}.footer-top{display:flex;justify-content:space-between;align-items:center;max-width:1200px;margin:0 auto -90px;padding:.5rem}.footer-contact{text-align:left;font-size:1rem;font-weight:700}.footer-contact a{text-decoration:none;color:#38914b}.footer-qr{text-align:right}.footer-qr img{width:100px;height:100px}.footer-qr p{font-size:.8rem;color:#333;margin-top:.5rem}.footer-center{margin:2rem 0}.footer-logo{width:80px;height:auto;margin-bottom:.5rem}.footer-center p{margin:0;font-size:.9rem;color:#000;font-weight:700}.footer-bottom{margin-top:1rem}.social-links{display:flex;justify-content:center;gap:1rem}.social-links a img{width:30px;height:30px;transition:transform .3s ease}.social-links a img:hover{transform:scale(1.2)}@media(max-width:768px){.footer-top{flex-direction:column;align-items:center;gap:1rem;margin-bottom:5px}.footer-contact,.footer-qr{text-align:center}.footer-qr img{width:80px;height:80px}.footer-logo{width:70px}}@media(max-width:480px){.footer-top{gap:2rem;margin-bottom:-25px}.footer-contact a{font-size:.8rem}.footer-qr img{width:70px;height:70px}.footer-qr p{font-size:.7rem}.footer-logo{width:60px}}
