@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap";:root{--primary-color:#e63946;--text-dark:#1a1a1a;--text-light:#fff;--text-gray:#666;--bg-light:#fff;--font-main:"Outfit", sans-serif;--transition-smooth:all .3s cubic-bezier(.4, 0, .2, 1)}*{box-sizing:border-box;margin:0;padding:0}body{font-family:var(--font-main);background-color:var(--bg-light);color:var(--text-dark);line-height:1.6;overflow-x:hidden}a{color:inherit;transition:var(--transition-smooth);text-decoration:none}ul{list-style:none}.container{max-width:1400px;margin:0 auto;padding:0 2rem}button{cursor:pointer;transition:var(--transition-smooth);background:0 0;border:none;font-family:inherit}html,body{max-width:100%;overflow-x:hidden}[data-animate]{opacity:0;transition:opacity .75s cubic-bezier(.25,.46,.45,.94),transform .75s cubic-bezier(.25,.46,.45,.94)}[data-animate=fade-up]{transform:translateY(44px)}[data-animate=fade-left]{transform:translate(-54px)}[data-animate=fade-right]{transform:translate(54px)}[data-animate=scale-in]{transform:scale(.93)}[data-animate=fade-in]{transform:none}[data-animate].is-visible{opacity:1;transform:translate(0)scale(1)}[data-delay="100"]{transition-delay:.1s}[data-delay="200"]{transition-delay:.2s}[data-delay="300"]{transition-delay:.3s}[data-delay="400"]{transition-delay:.4s}[data-delay="500"]{transition-delay:.5s}[data-delay="600"]{transition-delay:.6s}@media (prefers-reduced-motion:reduce){[data-animate]{opacity:1!important;transition:none!important;transform:none!important}}.header{-webkit-backdrop-filter:blur(10px);z-index:9000;background:#fffffffa;width:100%;padding:1rem 0;position:fixed;top:0;left:0;transform:translateZ(0)}.header-container{justify-content:space-between;align-items:center;max-width:1600px;margin:0 auto;padding:0 4rem;display:flex}.logo-text{color:var(--primary-color);letter-spacing:4px;cursor:pointer;font-size:2.2rem;font-weight:700}.header-logo-img{object-fit:cover;border-radius:50%;width:60px;height:60px;display:block}.mobile-menu-logo{border-bottom:1px solid #0000000f;margin-bottom:.2rem;padding:1.4rem 1.5rem 1rem}.mobile-header-logo-img{object-fit:contain;width:auto;max-width:240px;height:70px;display:block}.footer-logo-wrap{margin-bottom:2rem;display:inline-block}.footer-logo-img{object-fit:contain;width:auto;max-width:320px;height:100px;display:block}.nav ul{align-items:center;gap:2.5rem;display:flex}.nav a{color:var(--text-dark);letter-spacing:1px;font-size:.85rem;font-weight:600}.nav a:hover{color:var(--primary-color)}.cta-li a{border:1.5px solid var(--text-dark);transition:var(--transition-smooth);padding:.8rem 1.5rem}.cta-li a:hover{background:var(--text-dark);color:#fff}.hero-slider{text-align:center;box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100vh;padding-top:120px;display:flex;position:relative;overflow:hidden}.slide{opacity:0;z-index:1;background-position:50%;background-size:cover;width:100%;height:100%;transition:opacity 1.5s ease-in-out;position:absolute;top:0;left:0}.slide.active{opacity:1;z-index:2}.hero-overlay{z-index:3;background:linear-gradient(#0000001a,#0000004d);width:100%;height:100%;position:absolute;top:0;left:0}.hero-content{z-index:10;padding-bottom:18rem;animation:1.2s ease-out fadeInUp;position:relative}.hero-brand{letter-spacing:-1px;color:var(--text-light);text-transform:uppercase;text-shadow:0 4px 15px #0006;margin-bottom:2rem;font-size:55px;font-weight:700;line-height:1;display:block}.hero-title{color:var(--text-light);text-shadow:0 4px 15px #0006;letter-spacing:-1px;margin-bottom:1rem;font-size:90px;font-weight:700;line-height:1.1}.hero-subtitle{color:var(--text-light);text-shadow:0 2px 8px #0006;opacity:.9;font-size:30px;font-weight:300}.zoom-in.active{animation:8s ease-out forwards zoomInAnim}.zoom-out.active{animation:8s ease-out forwards zoomOutAnim}.pan-right.active{animation:8s ease-out forwards panRightAnim}@keyframes zoomInAnim{0%{transform:scale(1)}to{transform:scale(1.15)}}@keyframes zoomOutAnim{0%{transform:scale(1.15)}to{transform:scale(1)}}@keyframes panRightAnim{0%{transform:scale(1.1)translate(-20px)}to{transform:scale(1.1)translate(20px)}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@media (width<=1024px){.hero-brand,.hero-title{font-size:3.5rem}.header-container{padding:0 2rem}}@media (width<=768px){.nav{display:none}.hero-brand,.hero-title{font-size:2.5rem}.hero-subtitle{font-size:1.2rem}}.category-section{background:#fff;padding:4rem 2rem}.category-container{grid-template-columns:repeat(3,1fr);gap:.5rem;max-width:1800px;margin:0 auto;display:grid}.category-card{cursor:pointer;border-radius:8px;height:450px;position:relative;overflow:hidden}.category-card img{object-fit:cover;width:100%;height:100%;transition:transform .6s}.category-card:hover img{transform:scale(1.05)}.category-overlay{text-align:center;background:#0003;justify-content:center;align-items:flex-end;width:100%;height:100%;padding-bottom:4rem;transition:all .4s;display:flex;position:absolute;top:0;left:0}.category-card:hover .category-overlay{background:#0009}.category-text h2{color:#fff;text-shadow:0 2px 10px #0000004d;margin-bottom:0;font-size:4rem;font-weight:500;transition:transform .4s}.category-text p{color:#fff;text-shadow:0 2px 8px #0009;opacity:0;margin-top:10px;font-size:1.3rem;font-weight:400;transition:all .4s;transform:translateY(15px)}.category-card:hover .category-text p{opacity:1;transform:translateY(0)}.category-text h2{transition:transform .4s}.category-card:hover .category-text h2{transform:translateY(-5px)}@media (width<=1024px){.hero-title{font-size:3.5rem}.header-container{padding:0 2rem}}@media (width<=768px){.category-container{gap:.5rem;padding:0 1rem}.category-card{height:250px}.category-text h2{font-size:1.2rem}.category-text p{font-size:.7rem}}.about-intro-section{text-align:center;background:#fff;padding:10rem 2rem}.about-intro-container{max-width:1400px;margin:0 auto}.about-intro-title{color:#222;letter-spacing:-2px;margin-bottom:2rem;font-size:4.5rem;font-weight:700;line-height:1.05}.about-intro-subtitle{color:#444;letter-spacing:.5px;margin-bottom:5rem;font-size:2.2rem;font-weight:300}.about-intro-description{color:#666;max-width:1050px;margin:0 auto;font-size:1.5rem;font-weight:300;line-height:1.9}.about-intro-logos{justify-content:center;align-items:center;gap:4rem;margin:5rem 0;display:flex}.intro-logo{filter:grayscale();opacity:.7;width:auto;height:180px;transition:all .4s}.intro-logo:hover{filter:grayscale(0);opacity:1}.about-intro-cta{margin-top:4rem}.btn-solid-black{color:#fff;letter-spacing:2px;cursor:pointer;background:#000;border:1px solid #000;padding:1.2rem 2.5rem;font-size:1.1rem;font-weight:600;transition:all .3s}.btn-solid-black:hover{color:#000;background:0 0}@media (width<=1024px){.about-intro-title{letter-spacing:-1px;font-size:3.5rem}.about-intro-subtitle{font-size:1.8rem}}@media (width<=768px){.about-intro-section{padding:6rem 1.5rem}.about-intro-title{font-size:2.8rem}.about-intro-subtitle{margin-bottom:3rem;font-size:1.3rem}.about-intro-description{text-align:justify;font-size:1.1rem;line-height:1.7}}.virtual-consult-section{color:#fff;text-align:center;background:#000;padding:8rem 2rem}.virtual-consult-container{max-width:1200px;margin:0 auto}.virtual-consult-title{letter-spacing:-1px;margin-bottom:3rem;font-size:3.5rem;font-weight:700;line-height:1.2}.virtual-consult-cta{margin-bottom:3rem}.btn-solid-white{color:#000;letter-spacing:1px;cursor:pointer;background:#fff;border:1px solid #fff;padding:1.2rem 2.8rem;font-size:1rem;font-weight:700;transition:all .3s}.btn-solid-white:hover{color:#fff;background:0 0}.virtual-consult-subtext{color:#ffffffb3;max-width:800px;margin:0 auto;font-size:1.1rem;font-weight:300;line-height:1.6}@media (width<=768px){.virtual-consult-section{padding:5rem 1.5rem}.virtual-consult-title{font-size:2.2rem}.virtual-consult-subtext br{display:none}}.details-section{background:#fff;width:100%}.details-container{min-height:600px;display:flex}.details-image{flex:1;overflow:hidden}.details-image img{object-fit:cover;width:100%;height:100%}.details-content{text-align:center;flex:1;justify-content:center;align-items:center;padding:4rem;display:flex}.details-text-wrapper{max-width:500px}.details-title{color:#222;letter-spacing:-1px;margin-bottom:2rem;font-size:3rem;font-weight:700;line-height:1.2}.details-description{color:#666;margin-bottom:3rem;font-size:1.1rem;font-weight:400;line-height:1.7}@media (width<=1024px){.details-container{flex-direction:column}.details-image{height:400px}.details-content{padding:6rem 2rem}.details-title{font-size:2.5rem}}@media (width<=768px){.details-title{font-size:2rem}.details-description br{display:none}}.houzz-banner{background-position:50%;background-size:cover;height:400px;position:relative;overflow:hidden}.houzz-overlay{background:#ffffffbf;justify-content:center;align-items:center;width:100%;height:100%;display:flex;position:absolute;top:0;left:0}.houzz-container{text-align:center}.houzz-subtitle{color:#666;margin-bottom:.5rem;font-size:1.5rem;font-weight:500}.houzz-title{color:#333;letter-spacing:-1px;margin-bottom:2rem;font-size:3rem;font-weight:700}.houzz-logo-box{justify-content:center;align-items:center;gap:.8rem;display:flex}.houzz-logo{width:auto;height:60px}.houzz-brand-name{color:#333;letter-spacing:-2px;font-size:3.5rem;font-weight:700}@media (width<=768px){.houzz-banner{height:300px}.houzz-title{font-size:2rem}.houzz-brand-name{font-size:2.5rem}.houzz-logo{height:40px}}.awards-section{background:#000;width:100%}.awards-container{min-height:700px;display:flex}.awards-content{text-align:center;color:#fff;flex:1;justify-content:center;align-items:center;padding:5rem;display:flex}.awards-text-wrapper{max-width:600px}.awards-title{letter-spacing:1px;margin-bottom:2rem;font-size:2.2rem;font-weight:700;line-height:1.3}.awards-corp-box{background:#ffffff0d;border:1px solid #fff3;border-radius:4px;margin-bottom:2rem;padding:1rem 2rem;display:inline-block}.corp-number{letter-spacing:2px;color:#fff;font-family:Inter,sans-serif;font-size:1.1rem;font-weight:600}.awards-description{color:#fffc;margin-bottom:3rem;font-size:1rem;font-weight:300;line-height:1.8}.awards-image{flex:1;overflow:hidden}.awards-image img{object-fit:cover;width:100%;height:100%}@media (width<=1024px){.awards-container{flex-direction:column-reverse}.awards-image{height:400px}.awards-content{padding:6rem 2rem}}@media (width<=768px){.awards-title{font-size:1.6rem}.awards-description br{display:none}}.footer{color:#888;background:#000;border-top:1px solid #111;padding:8rem 2rem 2rem}.footer-container{grid-template-columns:1.5fr 1fr 1fr;gap:6rem;max-width:1400px;margin:0 auto;display:grid}.footer-column h4{color:#fff;margin-bottom:2rem;font-size:1.4rem;font-weight:600}.footer-column p{color:#999;margin-bottom:2rem;font-size:.95rem;line-height:1.8}.footer-links a{color:#777;margin-bottom:.8rem;font-size:.9rem;transition:color .3s;display:block}.footer-links a:hover{color:#fff}.footer-addr-text{color:#777;font-size:.9rem;line-height:1.6}.footer-services-list{padding:0;list-style:none}.footer-services-list li{color:#999;margin-bottom:1rem;font-size:.95rem}.footer-services-list span{color:#555;margin-right:12px;font-weight:700}.footer-contact p{color:#999;margin-bottom:1.2rem}.footer-contact strong{color:#fff;margin-left:5px}.footer-socials{gap:12px;margin-top:2.5rem;display:flex}.social-icon{color:#aaa;background:#222;border-radius:4px;justify-content:center;align-items:center;width:42px;height:42px;font-size:1.1rem;font-weight:700;text-decoration:none;transition:all .3s;display:flex}.social-icon:hover{color:#000;background:#fff;transform:translateY(-3px)}.instagram-icon{background:linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);color:#fff!important;border:none!important;border-radius:50%!important}.instagram-icon:hover{background:linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);transform:translateY(-5px)scale(1.1);box-shadow:0 5px 15px #dc274366;color:#fff!important}.whatsapp-float{color:#fff;z-index:9001;background-color:#25d366;border-radius:50%;justify-content:center;align-items:center;width:60px;height:60px;font-weight:600;text-decoration:none;transition:all .3s;display:flex;position:fixed;bottom:30px;right:30px;transform:translateZ(0);box-shadow:0 6px 20px #25d3664d}.whatsapp-float:hover{background-color:#128c7e;transform:scale(1.05)translateY(-5px);box-shadow:0 10px 25px #128c7e66}.whatsapp-float span{letter-spacing:.5px;font-size:.95rem}.footer-bottom{text-align:center;color:#444;letter-spacing:1px;border-top:1px solid #111;margin-top:8rem;padding-top:2rem;font-size:.8rem}.footer-services-list li a{color:#999;text-decoration:none;transition:color .3s}.footer-services-list li a:hover{color:#fff}@media (width<=1024px){.footer-container{text-align:left;grid-template-columns:1fr;gap:3rem}.footer-socials{justify-content:flex-start}.footer-column p{max-width:100%}}.portfolio-tabs{justify-content:center;gap:.5rem;margin-bottom:2.5rem;display:flex}.portfolio-tab{letter-spacing:2px;color:#888;cursor:pointer;background:#f5f5f5;border:2px solid #0000;border-radius:2px;padding:.75rem 3rem;font-size:.85rem;font-weight:700;transition:all .2s}.portfolio-tab:hover{color:#111;background:#ebebeb}.portfolio-tab-active{color:#fff;background:var(--primary-color);border-color:var(--primary-color)}.video-grid{grid-template-columns:repeat(5,1fr);gap:1rem;display:grid}.video-card{aspect-ratio:9/16;cursor:pointer;background:#111;border-radius:8px;position:relative;overflow:hidden}.video-card video{object-fit:cover;width:100%;height:100%;display:block}.video-card-overlay{background:#00000059;justify-content:center;align-items:center;transition:background .25s;display:flex;position:absolute;inset:0}.video-card:hover .video-card-overlay{background:#00000026}.video-play-btn{color:#111;background:#ffffffeb;border-radius:50%;justify-content:center;align-items:center;width:54px;height:54px;padding-left:4px;transition:transform .2s,background .2s;display:flex}.video-card:hover .video-play-btn{background:#fff;transform:scale(1.1)}.video-modal-overlay{z-index:9999;background:#000000f0;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.video-modal-close{color:#fff;cursor:pointer;z-index:10000;background:#ffffff1f;border:none;border-radius:50%;justify-content:center;align-items:center;width:44px;height:44px;transition:background .2s;display:flex;position:fixed;top:1.5rem;right:1.5rem}.video-modal-close:hover{background:#ffffff40}.video-modal-content{aspect-ratio:9/16;border-radius:10px;max-height:90vh;overflow:hidden}.video-modal-content video{object-fit:contain;background:#000;width:100%;height:100%}.watch-work-section{background:#0d0d0d;padding:7rem 0;overflow:hidden}.watch-work-container{grid-template-columns:1fr 1fr;align-items:center;gap:5rem;max-width:1400px;margin:0 auto;padding:0 4rem;display:grid}.watch-work-text{flex-direction:column;gap:0;display:flex}.watch-work-tag{letter-spacing:4px;color:var(--primary-color);margin-bottom:1.2rem;font-size:.75rem;font-weight:700;display:inline-block}.watch-work-title{color:#fff;letter-spacing:-1.5px;margin-bottom:1.5rem;font-size:3.8rem;font-weight:800;line-height:1.1}.watch-work-title-red{color:var(--primary-color)}.watch-work-desc{color:#888;margin-bottom:2.5rem;font-size:1rem;line-height:1.8}.watch-work-stats{align-items:center;gap:2rem;margin-bottom:3rem;display:flex}.watch-work-stat{flex-direction:column;gap:.2rem;display:flex}.watch-work-stat-num{color:#fff;font-size:2.2rem;font-weight:800;line-height:1}.watch-work-stat-label{color:#666;letter-spacing:1px;text-transform:uppercase;font-size:.75rem}.watch-work-stat-divider{background:#333;width:1px;height:40px}@keyframes reel-scroll{0%{transform:translateY(0)}to{transform:translateY(-50%)}}.watch-reel-wrap{border-radius:16px;height:560px;position:relative;overflow:hidden;-webkit-mask-image:linear-gradient(#0000 0%,#000 12% 88%,#0000 100%);mask-image:linear-gradient(#0000 0%,#000 12% 88%,#0000 100%)}.watch-reel-track{flex-direction:column;gap:1rem;animation:18s linear infinite reel-scroll;display:flex}.watch-reel-wrap:hover .watch-reel-track{animation-play-state:paused}.watch-reel-card{aspect-ratio:9/16;background:#1a1a1a;border-radius:12px;flex-shrink:0;width:260px;margin:0 auto;overflow:hidden;box-shadow:0 8px 30px #00000080}.watch-reel-card video{object-fit:cover;width:100%;height:100%;display:block}.page-hero{text-align:center;background-position:50%;background-size:cover;justify-content:center;align-items:center;height:60vh;min-height:420px;margin-top:72px;display:flex;position:relative;overflow:hidden}.page-hero-overlay{z-index:1;background:linear-gradient(#00000073,#000000a6);position:absolute;inset:0}.page-hero-content{z-index:2;animation:.9s ease-out fadeInUp;position:relative}.page-hero-tag{letter-spacing:4px;color:var(--primary-color);margin-bottom:1rem;font-size:.8rem;font-weight:600;display:block}.page-hero-title{color:#fff;letter-spacing:-2px;text-shadow:0 4px 20px #0006;margin-bottom:1.2rem;font-size:5rem;font-weight:700;line-height:1}.page-hero-breadcrumb{color:#ffffffb3;letter-spacing:1px;font-size:.95rem;font-weight:400}@media (width<=768px){.page-hero{height:50vh;min-height:300px}.page-hero-title{letter-spacing:-1px;font-size:2.8rem}}.page-section{background:#fff;padding:8rem 2rem}.page-section-container{max-width:1400px;margin:0 auto}.section-header{text-align:center;margin-bottom:5rem}.section-tag{letter-spacing:3px;color:var(--primary-color);margin-bottom:1.2rem;font-size:.8rem;font-weight:600;display:block}.section-title{color:#222;letter-spacing:-1.5px;margin-bottom:1.5rem;font-size:3.5rem;font-weight:700;line-height:1.1}.section-subtitle{color:#666;max-width:700px;margin:0 auto;font-size:1.2rem;font-weight:300;line-height:1.8}.section-body{color:#555;font-size:1.1rem;font-weight:300;line-height:1.8}@media (width<=1024px){.section-title{font-size:2.8rem}}@media (width<=768px){.page-section{padding:5rem 1.5rem}.section-title{letter-spacing:-.5px;font-size:2.2rem}.section-subtitle{font-size:1.05rem}.section-header{margin-bottom:3rem}}.page-cta-section{text-align:center;color:#fff;background:#000;padding:8rem 2rem}.page-cta-container{max-width:800px;margin:0 auto}.page-cta-section h2{letter-spacing:-1px;margin-bottom:1.5rem;font-size:3rem;font-weight:700}.page-cta-section p{color:#ffffffbf;margin-bottom:3rem;font-size:1.15rem;font-weight:300;line-height:1.7}@media (width<=768px){.page-cta-section{padding:5rem 1.5rem}.page-cta-section h2{font-size:2rem}}.split-section{align-items:stretch;max-width:1400px;min-height:560px;margin:0 auto;display:flex}.split-section-reverse{flex-direction:row-reverse}.split-image{flex:1;min-height:500px;overflow:hidden}.split-image img{object-fit:cover;width:100%;height:100%;display:block}.split-content{flex-direction:column;flex:1;justify-content:center;padding:5rem;display:flex}.split-content .section-title{text-align:left;margin-bottom:1.5rem}@media (width<=1024px){.split-section,.split-section-reverse{flex-direction:column}.split-image{min-height:380px}.split-content{padding:4rem 2rem}}.office-mobile-header{text-align:left;padding:0 0 1.5rem;display:none}@media (width<=1024px){.office-mobile-header{display:block}.office-desktop-tag{display:none}.office-section .split-section-reverse .split-image{order:-1}}.stats-bar-section{background:#000;padding:5rem 2rem}.stats-bar-container{justify-content:center;align-items:center;gap:0;max-width:1200px;margin:0 auto;display:flex}.stat-bar-item{text-align:center;color:#fff;flex:1;padding:1rem}.stat-bar-number{color:#fff;letter-spacing:-1px;margin-bottom:.5rem;font-size:3.5rem;font-weight:700;line-height:1;display:block}.stat-bar-label{letter-spacing:1px;color:#ffffff8c;text-transform:uppercase;font-size:.85rem;font-weight:400;display:block}.stat-bar-divider{background:#ffffff26;flex-shrink:0;width:1px;height:60px}@media (width<=768px){.stats-bar-container{flex-wrap:wrap;gap:2rem}.stat-bar-divider{display:none}.stat-bar-item{flex:40%}.stat-bar-number{font-size:2.5rem}}.values-grid{grid-template-columns:repeat(3,1fr);gap:3rem;max-width:1400px;margin:0 auto;display:grid}.value-card{text-align:center;background:#fff;border:1px solid #f0f0f0;padding:3.5rem 2.5rem;transition:all .3s}.value-card:hover{transform:translateY(-4px);box-shadow:0 15px 40px #00000014}.value-icon{width:70px;height:70px;color:var(--primary-color);background:#f9f9f9;justify-content:center;align-items:center;margin:0 auto 2rem;display:flex}.value-card h3{color:#222;letter-spacing:-.5px;margin-bottom:1rem;font-size:1.4rem;font-weight:700}.value-card p{color:#666;font-size:1rem;font-weight:300;line-height:1.75}@media (width<=1024px){.values-grid{grid-template-columns:repeat(2,1fr)}}@media (width<=600px){.values-grid{grid-template-columns:1fr;gap:2rem}}.feature-list{margin-top:2rem;padding:0;list-style:none}.feature-list li{align-items:flex-start;gap:1.5rem;margin-bottom:2rem;display:flex}.feature-check{color:var(--primary-color);flex-shrink:0;width:20px;margin-top:2px;font-size:1rem;font-weight:700}.feature-list strong{color:#222;margin-bottom:.4rem;font-size:1rem;font-weight:700;display:block}.feature-list p{color:#666;margin:0;font-size:.95rem;font-weight:300;line-height:1.6}.certs-grid{grid-template-columns:repeat(4,1fr);gap:2.5rem;max-width:1400px;margin:0 auto;display:grid}.cert-card{text-align:center;background:#fff;border:1px solid #f0f0f0;padding:3rem 2rem;transition:all .3s}.cert-card:hover{transform:translateY(-3px);box-shadow:0 10px 30px #00000012}.cert-card img{object-fit:contain;filter:grayscale();opacity:.7;width:auto;height:90px;margin-bottom:1.5rem;transition:all .4s}.cert-card:hover img{filter:grayscale(0);opacity:1}.cert-card h4{color:#222;letter-spacing:-.3px;margin-bottom:.8rem;font-size:1.05rem;font-weight:700}.cert-card p{color:#666;font-size:.9rem;font-weight:300;line-height:1.65}@media (width<=1024px){.certs-grid{grid-template-columns:repeat(2,1fr)}}@media (width<=600px){.certs-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem}.cert-card{padding:2rem 1rem}.cert-card img{height:60px}}.service-detail-section{align-items:stretch;min-height:580px;display:flex}.service-detail-reverse{flex-direction:row-reverse}.service-detail-image{flex:1;overflow:hidden}.service-detail-image img{object-fit:cover;width:100%;height:100%;transition:transform .6s;display:block}.service-detail-section:hover .service-detail-image img{transform:scale(1.03)}.service-detail-content{background:#fff;flex-direction:column;flex:1;justify-content:center;padding:5rem;display:flex}.service-detail-reverse .service-detail-content{background:#f9f9f9}.service-detail-title{color:#222;letter-spacing:-1px;margin:1rem 0 1.5rem;font-size:2.5rem;font-weight:700;line-height:1.15}.service-detail-desc{color:#555;margin-bottom:2rem;font-size:1.05rem;font-weight:300;line-height:1.8}.service-feature-list{padding:0;list-style:none}.service-feature-list li{color:#444;border-bottom:1px solid #f0f0f0;padding:.5rem 0;font-size:.95rem;font-weight:400}.feature-bullet{color:var(--primary-color);margin-right:.8rem;font-weight:700}@media (width<=1024px){.service-detail-section,.service-detail-reverse{flex-direction:column}.service-detail-image{min-height:360px}.service-detail-content{padding:4rem 2rem}}.includes-grid{grid-template-columns:repeat(3,1fr);gap:2.5rem;max-width:1400px;margin:0 auto;display:grid}.includes-card{background:#fff;border:1px solid #eee;padding:3rem 2rem;transition:box-shadow .3s,transform .3s}.includes-card:hover{transform:translateY(-3px);box-shadow:0 12px 30px #00000012}.includes-icon{margin-bottom:1.5rem;font-size:2.2rem}.includes-card h4{color:#222;margin-bottom:.8rem;font-size:1.1rem;font-weight:700}.includes-card p{color:#666;font-size:.95rem;font-weight:300;line-height:1.7}@media (width<=1024px){.includes-grid{grid-template-columns:repeat(2,1fr)}}@media (width<=600px){.includes-grid{grid-template-columns:1fr}}.process-steps-section{background:#fff;padding:0 2rem 8rem}.process-steps-container{max-width:1100px;margin:0 auto}.process-step{gap:4rem;margin-bottom:0;display:flex}.process-step-number-col{flex-direction:column;flex-shrink:0;align-items:center;width:80px;display:flex}.process-step-number{color:#fff;letter-spacing:-1px;background:#000;flex-shrink:0;justify-content:center;align-items:center;width:80px;height:80px;font-size:1.4rem;font-weight:700;display:flex}.process-step-line{background:#eee;flex:1;width:2px;min-height:60px;margin:0 auto}.process-step-card{border-left:none;flex:1;padding:2.5rem 3rem 4rem}.process-step-title{color:#222;letter-spacing:-.5px;margin:.8rem 0 1.2rem;font-size:1.8rem;font-weight:700}.process-step-desc{color:#555;margin-bottom:1.5rem;font-size:1.05rem;font-weight:300;line-height:1.8}.process-step-details{grid-template-columns:repeat(2,1fr);gap:.6rem;padding:0;list-style:none;display:grid}.process-step-details li{color:#444;font-size:.9rem;font-weight:400}.process-step-details li span{color:var(--primary-color);margin-right:.5rem}@media (width<=768px){.process-step{gap:1.5rem}.process-step-number-col{width:50px}.process-step-number{width:50px;height:50px;font-size:1rem}.process-step-card{padding:1rem 1rem 3rem}.process-step-title{font-size:1.4rem}.process-step-details{grid-template-columns:1fr}}.faq-grid{grid-template-columns:repeat(2,1fr);gap:2rem;max-width:1400px;margin:0 auto;display:grid}.faq-card{background:#fff;border:1px solid #eee;padding:2.5rem;transition:box-shadow .3s}.faq-card:hover{box-shadow:0 8px 25px #0000000f}.faq-card h4{color:#222;margin-bottom:1rem;font-size:1.05rem;font-weight:700;line-height:1.4}.faq-card p{color:#555;font-size:.95rem;font-weight:300;line-height:1.75}@media (width<=768px){.faq-grid{grid-template-columns:1fr}}.filter-tabs{flex-wrap:wrap;justify-content:center;gap:1rem;margin-top:1rem;display:flex}.filter-tab{letter-spacing:1.5px;color:#555;cursor:pointer;background:0 0;border:1.5px solid #ddd;padding:.7rem 1.8rem;font-size:.8rem;font-weight:600;transition:all .25s}.filter-tab:hover{color:#000;border-color:#000}.filter-tab-active{color:#fff;background:#000;border-color:#000}.projects-grid-section{padding:0 2rem 8rem}.projects-grid{grid-template-columns:repeat(3,1fr);gap:1rem;max-width:1600px;margin:0 auto;display:grid}.project-card{cursor:pointer;height:420px;position:relative;overflow:hidden}.project-card-image{width:100%;height:100%}.project-card-image img{object-fit:cover;width:100%;height:100%;transition:transform .6s;display:block}.project-card:hover .project-card-image img{transform:scale(1.06)}.project-card-overlay{opacity:0;background:linear-gradient(#0000 45%,#000000d9 100%);align-items:flex-end;padding:2rem;transition:opacity .4s;display:flex;position:absolute;inset:0}.project-card:hover .project-card-overlay{opacity:1}.project-card-category{letter-spacing:2px;color:var(--primary-color);margin-bottom:.5rem;font-size:.75rem;font-weight:600;display:block}.project-card-title{color:#fff;margin-bottom:.4rem;font-size:1.3rem;font-weight:700}.project-card-meta{color:#ffffffb3;font-size:.85rem;font-weight:300}.no-results{text-align:center;color:#888;padding:5rem 2rem;font-size:1.1rem}@media (width<=1024px){.projects-grid{grid-template-columns:repeat(2,1fr)}}@media (width<=600px){.projects-grid{grid-template-columns:1fr}.project-card{height:280px}.project-card-overlay{opacity:1}}.awards-cards-grid{grid-template-columns:repeat(4,1fr);gap:2rem;max-width:1400px;margin:0 auto;display:grid}.award-card{text-align:center;background:#fff;border:1px solid #eee;padding:3rem 2rem;transition:all .3s}.award-card:hover{transform:translateY(-4px);box-shadow:0 12px 35px #00000014}.award-card-logo{justify-content:center;align-items:center;gap:.6rem;height:70px;margin-bottom:1.8rem;display:flex}.award-card-logo img{object-fit:contain;filter:grayscale();opacity:.75;width:auto;height:50px;transition:all .4s}.award-card:hover .award-card-logo img{filter:grayscale(0);opacity:1}.award-brand-text{color:#888;letter-spacing:-1px;font-size:2rem;font-weight:700;transition:color .4s}.award-card:hover .award-brand-text{color:#5e3e2c}.award-card-title{color:#222;margin-bottom:.5rem;font-size:1.15rem;font-weight:700}.award-card-years{letter-spacing:1.5px;color:var(--primary-color);margin-bottom:1.2rem;font-size:.8rem;font-weight:600;display:block}.award-card-desc{color:#666;font-size:.9rem;font-weight:300;line-height:1.65}@media (width<=1024px){.awards-cards-grid{grid-template-columns:repeat(2,1fr)}}@media (width<=600px){.awards-cards-grid{grid-template-columns:repeat(2,1fr);gap:1rem}.award-card{padding:2rem 1rem}}.achievement-gallery-grid{grid-template-columns:repeat(4,1fr);gap:.8rem;max-width:1600px;margin:0 auto;display:grid}.gallery-item{cursor:pointer;height:280px;position:relative;overflow:hidden}.gallery-item:first-child,.gallery-item:nth-child(5){grid-column:span 2}.gallery-item img{object-fit:cover;width:100%;height:100%;transition:transform .5s;display:block}.gallery-item:hover img{transform:scale(1.06)}.gallery-item-overlay{opacity:0;background:#0000008c;flex-direction:column;justify-content:center;align-items:center;gap:1rem;transition:opacity .35s;display:flex;position:absolute;inset:0}.gallery-item:hover .gallery-item-overlay{opacity:1}.gallery-item-caption{color:#fff;letter-spacing:.5px;text-align:center;padding:0 1rem;font-size:.95rem;font-weight:500}.gallery-item-zoom{color:#fff;border:2px solid #fff9;justify-content:center;align-items:center;width:44px;height:44px;font-size:1.5rem;font-weight:300;display:flex}@media (width<=1024px){.achievement-gallery-grid{grid-template-columns:repeat(2,1fr)}.gallery-item:first-child,.gallery-item:nth-child(5){grid-column:span 1}}@media (width<=600px){.achievement-gallery-grid{grid-template-columns:repeat(2,1fr);gap:.5rem}.gallery-item{height:160px}.gallery-item-overlay{opacity:1}}.lightbox{z-index:9999;background:#000000e6;justify-content:center;align-items:center;padding:2rem;animation:.2s fadeIn;display:flex;position:fixed;inset:0}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.lightbox-inner{text-align:center;width:100%;max-width:1000px;position:relative}.lightbox-inner img{object-fit:contain;max-width:100%;max-height:80vh;margin:0 auto;display:block}.lightbox-caption{color:#ffffffb3;margin-top:1.2rem;font-size:.95rem}.lightbox-close{color:#fff;cursor:pointer;opacity:.7;background:0 0;border:none;font-size:1.4rem;transition:opacity .2s;position:absolute;top:-2.5rem;right:0}.lightbox-close:hover{opacity:1}.testimonials-grid{grid-template-columns:repeat(3,1fr);gap:2.5rem;max-width:1400px;margin:0 auto;display:grid}.testimonial-card{background:#fff;border:1px solid #eee;padding:3rem 2.5rem}.testimonial-stars{color:#f0a500;letter-spacing:3px;margin-bottom:1.5rem;font-size:1.1rem}.testimonial-quote{color:#444;margin-bottom:2rem;font-size:1.05rem;font-style:italic;font-weight:300;line-height:1.8}.testimonial-author strong{color:#222;margin-bottom:.3rem;font-size:1rem;font-weight:700;display:block}.testimonial-author span{color:#888;font-size:.85rem}@media (width<=1024px){.testimonials-grid{grid-template-columns:1fr;gap:2rem}}.faq-accordion-container{flex-direction:column;gap:1.2rem;max-width:900px;margin:0 auto;display:flex}.faq-accordion-item{cursor:pointer;background:#fff;border:1px solid #f0f0f0;transition:all .3s}.faq-accordion-item:hover{border-color:#ddd}.faq-accordion-item.active{border-color:var(--primary-color);box-shadow:0 10px 30px #0000000d}.faq-accordion-header{justify-content:space-between;align-items:center;gap:2rem;padding:2rem 2.5rem;display:flex}.faq-accordion-header h4{color:#222;letter-spacing:-.3px;margin:0;font-size:1.15rem;font-weight:600;line-height:1.4}.faq-accordion-icon{flex-shrink:0;width:20px;height:20px;position:relative}.faq-accordion-icon span{background:#222;transition:all .3s;position:absolute}.faq-accordion-icon .line-1{width:100%;height:2px;top:50%;left:0;transform:translateY(-50%)}.faq-accordion-icon .line-2{width:2px;height:100%;top:0;left:50%;transform:translate(-50%)}.faq-accordion-item.active .faq-accordion-icon .line-2{opacity:0;transform:translate(-50%)rotate(90deg)}.faq-accordion-item.active .faq-accordion-icon .line-1{background:var(--primary-color)}.faq-accordion-body{max-height:0;transition:max-height .4s cubic-bezier(.4,0,.2,1);overflow:hidden}.faq-accordion-item.active .faq-accordion-body{max-height:500px}.faq-accordion-content{padding:0 2.5rem 2.5rem}.faq-accordion-content p{color:#666;margin:0;font-size:1.05rem;font-weight:300;line-height:1.8}@media (width<=768px){.faq-accordion-header{padding:1.2rem}.faq-accordion-content{padding:0 1.2rem 1.2rem}.faq-accordion-header h4{font-size:.95rem;line-height:1.3}.faq-accordion-content p{font-size:.88rem;line-height:1.6}}.blog-featured-card{border:1px solid #eee;gap:0;max-width:1400px;min-height:480px;margin:0 auto;display:flex;overflow:hidden}.blog-featured-image{flex:1;min-height:400px;position:relative;overflow:hidden}.blog-featured-image img{object-fit:cover;width:100%;height:100%;display:block}.blog-featured-badge{background:var(--primary-color);color:#fff;letter-spacing:2px;padding:.4rem 1rem;font-size:.7rem;font-weight:700;position:absolute;top:1.5rem;left:1.5rem}.blog-featured-content{background:#fff;flex-direction:column;flex:1;justify-content:center;padding:4rem;display:flex}.blog-meta{flex-wrap:wrap;align-items:center;gap:1.2rem;margin-bottom:1.2rem;display:flex}.blog-category{letter-spacing:2px;color:var(--primary-color);text-transform:uppercase;font-size:.75rem;font-weight:700}.blog-date,.blog-read-time{color:#999;font-size:.85rem;font-weight:300}.blog-featured-title{color:#222;letter-spacing:-.5px;margin-bottom:1.5rem;font-size:2.2rem;font-weight:700;line-height:1.2}.blog-featured-excerpt{color:#555;margin-bottom:2.5rem;font-size:1.05rem;font-weight:300;line-height:1.8}.blog-read-btn{align-self:flex-start}.blog-grid{grid-template-columns:repeat(3,1fr);gap:2.5rem;max-width:1400px;margin:0 auto;padding-top:4rem;display:grid}.blog-card{background:#fff;border:1px solid #eee;transition:box-shadow .3s,transform .3s;overflow:hidden}.blog-card:hover{transform:translateY(-4px);box-shadow:0 12px 35px #00000014}.blog-card-image{height:240px;position:relative;overflow:hidden}.blog-card-image img{object-fit:cover;width:100%;height:100%;transition:transform .5s;display:block}.blog-card:hover .blog-card-image img{transform:scale(1.05)}.blog-card-category{color:#fff;letter-spacing:1.5px;background:#000;padding:.35rem .9rem;font-size:.7rem;font-weight:700;position:absolute;bottom:1rem;left:1rem}.blog-card-content{padding:2rem}.blog-card-title{color:#222;letter-spacing:-.3px;margin:.8rem 0 1rem;font-size:1.15rem;font-weight:700;line-height:1.4}.blog-card-excerpt{color:#666;margin-bottom:1.5rem;font-size:.9rem;font-weight:300;line-height:1.7}.blog-read-more{color:#222;letter-spacing:.5px;cursor:pointer;background:0 0;border:none;padding:0;font-size:.85rem;font-weight:700;transition:color .2s}.blog-read-more:hover{color:var(--primary-color)}.blog-read-more span{transition:transform .25s;display:inline-block}.blog-read-more:hover span{transform:translate(5px)}@media (width<=1024px){.blog-featured-card{flex-direction:column}.blog-featured-image{min-height:300px}.blog-featured-content{padding:3rem 2rem}.blog-grid{grid-template-columns:repeat(2,1fr)}}@media (width<=600px){.blog-grid{grid-template-columns:1fr}.blog-featured-title{font-size:1.6rem}}.contact-layout{grid-template-columns:1.4fr 1fr;gap:6rem;max-width:1400px;margin:0 auto;padding-top:2rem;display:grid}.contact-form{flex-direction:column;gap:0;display:flex}.form-row{grid-template-columns:1fr 1fr;gap:1.5rem;margin-bottom:1.5rem;display:grid}.form-group{flex-direction:column;gap:.6rem;margin-bottom:0;display:flex}.form-group-full{margin-bottom:2rem}.form-group label{letter-spacing:1px;color:#333;text-transform:uppercase;font-size:.8rem;font-weight:600}.form-group input,.form-group select,.form-group textarea{font-family:var(--font-main);color:#222;appearance:none;background:#fff;border:1.5px solid #e0e0e0;outline:none;padding:1rem 1.2rem;font-size:.95rem;transition:border-color .25s}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:#000}.form-group select{cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-position:right 1rem center;background-repeat:no-repeat;padding-right:3rem}.form-group textarea{resize:vertical;min-height:150px}.form-submit-btn{font-family:var(--font-main);letter-spacing:2px;align-self:flex-start;padding:1.2rem 3rem;font-size:.9rem}.form-privacy-note{color:#aaa;margin-top:1.2rem;font-size:.8rem;font-weight:300}.form-success{text-align:center;border:1px solid #eee;padding:5rem 2rem}.form-success-icon{color:#fff;background:#000;border-radius:50%;justify-content:center;align-items:center;width:70px;height:70px;margin:0 auto 2rem;font-size:2rem;display:flex}.form-success h3{color:#222;margin-bottom:1rem;font-size:1.8rem;font-weight:700}.form-success p{color:#666;font-size:1rem;font-weight:300;line-height:1.7}.contact-info-col{flex-direction:column;gap:0;display:flex}.contact-info-block{border-bottom:1px solid #eee;padding:2.5rem 0}.contact-info-block:first-child{padding-top:0}.contact-info-block h3{color:#222;margin:.6rem 0 .8rem;font-size:1.1rem;font-weight:700}.contact-info-block p{color:#555;font-size:.95rem;font-weight:300;line-height:1.7}.contact-link{color:#222;margin-bottom:.4rem;font-size:1rem;font-weight:600;transition:color .25s;display:block}.contact-link:hover{color:var(--primary-color)}.whatsapp-contact-btn{color:#fff;letter-spacing:.5px;background:#25d366;align-items:center;gap:.8rem;margin-top:.5rem;padding:.9rem 1.8rem;font-size:.9rem;font-weight:600;text-decoration:none;transition:background .25s;display:inline-flex}.whatsapp-contact-btn:hover{background:#128c7e}.contact-service-area{padding:2.5rem 0 0}.contact-service-area h3{color:#222;margin:.6rem 0 1rem;font-size:1.1rem;font-weight:700}.service-area-tags{flex-wrap:wrap;gap:.6rem;display:flex}.area-tag{color:#555;letter-spacing:.3px;background:#f4f4f4;padding:.4rem 1rem;font-size:.8rem;font-weight:500;transition:all .2s}.area-tag:hover{color:#fff;background:#000}@media (width<=1024px){.contact-layout{grid-template-columns:1fr;gap:4rem}.form-row{grid-template-columns:1fr}}.map-section{background:#f4f4f4;min-height:300px}.map-placeholder{background:#f0f0f0;justify-content:center;align-items:center;min-height:300px;display:flex}.map-pin-container{text-align:center;padding:4rem 2rem}.map-pin-icon{color:var(--primary-color);margin-bottom:1rem}.map-pin-container p{color:#555;font-size:1.05rem;font-weight:300}.footer-nav-links{flex-direction:column;gap:.6rem;margin-bottom:1.5rem;display:flex}.footer-nav-links a{color:#777;font-size:.9rem;transition:color .25s}.footer-nav-links a:hover{color:#fff}.hamburger{cursor:pointer;background:0 0;border:none;flex-direction:column;gap:5px;padding:6px;display:none}.hamburger-line{transform-origin:50%;background:#1a1a1a;width:24px;height:2px;transition:all .3s;display:block}.hamburger-open .hamburger-line:first-child{transform:translateY(7px)rotate(45deg)}.hamburger-open .hamburger-line:nth-child(2){opacity:0;transform:scaleX(0)}.hamburger-open .hamburger-line:nth-child(3){transform:translateY(-7px)rotate(-45deg)}.mobile-menu{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);z-index:999;background:#fffffffc;width:100%;max-height:0;transition:max-height .4s cubic-bezier(.4,0,.2,1);position:fixed;top:72px;left:0;overflow:hidden}.mobile-menu.mobile-menu-open{max-height:700px}.mobile-menu ul{flex-direction:column;gap:0;padding:1rem 2rem 2rem;display:flex}.mobile-menu ul li{border-bottom:1px solid #0000000f}.mobile-menu ul li a{letter-spacing:1px;color:#222;padding:1.1rem 0;font-size:.9rem;font-weight:600;display:block}.mobile-menu ul li a.active{color:var(--primary-color)}.mobile-cta-btn{letter-spacing:2px;background:#000;margin-top:1.5rem;padding:.85rem 2rem;display:inline-block;color:#fff!important;font-size:.85rem!important}@media (width<=1024px){.hamburger{display:flex}.nav{display:none}}.nav a.active{color:var(--primary-color)}.btn-outline{border:1.5px solid var(--text-dark);transition:var(--transition-smooth);letter-spacing:1px;cursor:pointer;color:var(--text-dark);background:0 0;padding:.8rem 1.5rem;font-size:.85rem;font-weight:600;display:inline-block}.btn-outline:hover{background:var(--text-dark);color:#fff}.team-photos-grid{grid-template-columns:repeat(2,1fr);gap:2.5rem;max-width:1200px;margin:0 auto;display:grid}.team-photo-card{background:#fff;border:1px solid #eee;transition:box-shadow .35s,transform .35s;overflow:hidden}.team-photo-card:hover{transform:translateY(-5px);box-shadow:0 16px 45px #0000001a}.team-photo-image{background:#111;width:100%;height:480px;overflow:hidden}.team-photo-image img{object-fit:contain;object-position:center;background:#111;width:100%;height:100%;display:block}.team-photo-card:hover .team-photo-image img{transform:none}.team-photo-caption{border-top:3px solid var(--primary-color);background:#fff;padding:2rem 2.5rem}.team-photo-caption h4{color:#222;letter-spacing:-.3px;margin-bottom:.4rem;font-size:1.2rem;font-weight:700}.team-photo-caption p{color:#666;margin:0;font-size:.95rem;font-weight:300;line-height:1.6}@media (width<=768px){.team-photos-grid{grid-template-columns:1fr;gap:2rem}.team-photo-image{height:320px}}.cert-gallery-grid{grid-template-columns:repeat(2,1fr);gap:3rem;max-width:1000px;margin:0 auto;display:grid}.cert-gallery-item{cursor:pointer;background:#fff;border:1px solid #e8e8e8;transition:box-shadow .3s,transform .3s;overflow:hidden}.cert-gallery-item:hover{transform:translateY(-4px);box-shadow:0 16px 45px #0000001f}.cert-gallery-img-wrap{background:#fafaf8;justify-content:center;align-items:center;width:100%;min-height:480px;padding:2rem;display:flex}.cert-gallery-img-wrap img{object-fit:contain;width:100%;height:auto;max-height:520px;display:block}.cert-gallery-caption{border-top:3px solid var(--primary-color);background:#fff;justify-content:space-between;align-items:center;padding:1.2rem 1.8rem;display:flex}.cert-gallery-caption span:first-child{color:#222;letter-spacing:.3px;font-size:.95rem;font-weight:600}.cert-zoom-hint{color:#aaa;letter-spacing:.5px;font-size:.78rem;font-weight:500}@media (width<=768px){.header-container{padding:0 1.2rem}.header-logo-img{width:45px;height:45px}.hamburger{flex-shrink:0;display:flex!important}.hamburger-line{background:#1a1a1a!important}.mobile-header-logo-img{height:60px}.footer-logo-img{height:80px}.hero-slider{height:100svh;padding-top:80px}.hero-overlay{background:linear-gradient(#0000008c,#000000a6)}.hero-content{padding-bottom:3rem;padding-left:1.5rem;padding-right:1.5rem}.hero-title{letter-spacing:-.5px;text-shadow:0 2px 20px #000000b3;font-size:2.4rem;line-height:1.1}.hero-subtitle{letter-spacing:0;text-shadow:0 1px 8px #0009;font-size:1rem}.hero-title br{display:none}.category-section{padding:1.5rem 1rem}.category-container{grid-template-columns:1fr;gap:.8rem;padding:0}.category-card{border-radius:6px;height:200px}.category-text h2{font-size:2rem}.category-text p{opacity:1;font-size:.9rem;transform:none}.category-overlay,.category-card:hover .category-overlay{background:#0000006b}.category-card:hover .category-text h2{transform:none}.about-intro-section{padding:4rem 1.5rem}.about-intro-title{letter-spacing:-.5px;margin-bottom:1.2rem;font-size:2rem}.about-intro-subtitle{margin-bottom:2rem;font-size:1.1rem}.about-intro-description{text-align:left;font-size:1rem;line-height:1.75}.about-intro-logos{flex-wrap:wrap;justify-content:center;gap:1.5rem;margin:2.5rem 0}.intro-logo{height:70px}.about-intro-cta{margin-top:2rem}.about-intro-title br,.about-intro-subtitle br{display:none}.btn-solid-black,.btn-solid-white{text-align:center;box-sizing:border-box;width:100%;padding:1rem 1.2rem;display:block}.cta-li .btn-outline{width:auto;display:inline-block}.form-submit-btn{text-align:center;align-self:stretch;width:100%;padding:1rem}.virtual-consult-section{padding:4rem 1.5rem}.virtual-consult-title{letter-spacing:-.5px;margin-bottom:2rem;font-size:1.9rem}.virtual-consult-subtext{font-size:1rem}.virtual-consult-title br,.virtual-consult-subtext br{display:none}.details-content{padding:3rem 1.5rem}.details-title{letter-spacing:-.3px;font-size:1.85rem}.details-description{font-size:1rem}.details-title br,.details-description br{display:none}.houzz-banner{height:240px}.houzz-subtitle{font-size:1rem}.houzz-title{margin-bottom:1.2rem;font-size:1.7rem}.houzz-brand-name{font-size:2rem}.houzz-logo{height:30px}.awards-content{padding:3.5rem 1.5rem}.awards-title{letter-spacing:0;font-size:1.5rem}.awards-description{font-size:.95rem}.awards-title br,.awards-description br{display:none}.footer{padding:3.5rem 1.5rem 5rem}.footer-container{gap:0}.footer-column{text-align:left;border-bottom:1px solid #1a1a1a;padding:2rem 0}.footer-column:first-child{padding-top:0}.footer-column:last-child{border-bottom:none}.footer-column h4{letter-spacing:1.5px;text-transform:uppercase;color:#fff;margin-bottom:1.2rem;font-size:1rem}.footer-column p{text-align:left;max-width:100%;margin-bottom:1rem;margin-left:0;margin-right:0;font-size:.88rem;line-height:1.75}.footer-addr-text{font-size:.85rem}.footer-services-list li{margin-bottom:.7rem;font-size:.88rem}.footer-services-list span{margin-right:8px}.footer-contact p{margin-bottom:.8rem;font-size:.88rem}.footer-contact strong{font-size:.88rem}.footer-nav-links{flex-flow:wrap;gap:.5rem 1.2rem;margin-bottom:1.2rem}.footer-nav-links a{font-size:.83rem}.footer-socials{justify-content:flex-start;margin-top:1.5rem}.footer-bottom{letter-spacing:.3px;word-break:break-word;margin-top:2rem;padding-top:1.5rem;padding-bottom:1rem;font-size:.7rem;line-height:1.6}.whatsapp-float{z-index:9999;border-radius:50%;width:52px;height:52px;padding:0;bottom:16px;right:16px;display:flex!important}.whatsapp-float span{display:none}.page-hero{height:44vh;min-height:240px;margin-top:65px}.page-hero-tag{letter-spacing:2.5px;margin-bottom:.7rem;font-size:.7rem}.page-hero-title{letter-spacing:-.5px;padding:0 1rem;font-size:2.2rem;line-height:1.05}.page-hero-title br{display:none}.page-hero-breadcrumb{margin-top:.5rem;font-size:.8rem}.page-section{padding:3.5rem 1.2rem}.page-section-container{padding:0}.section-header{margin-bottom:2.5rem}.section-tag{letter-spacing:2px;margin-bottom:.8rem;font-size:.7rem}.section-title{letter-spacing:-.3px;margin-bottom:.8rem;font-size:1.7rem}.section-title br{display:none}.section-subtitle{font-size:.97rem;line-height:1.7}.section-body{font-size:1rem;line-height:1.75}.page-cta-section{padding:4rem 1.5rem}.page-cta-section h2{letter-spacing:-.3px;font-size:1.75rem}.page-cta-section h2 br{display:none}.page-cta-section p{margin-bottom:2rem;font-size:1rem}.split-content{padding:3rem 1.5rem}.split-image{min-height:260px}.split-content .section-title{font-size:1.9rem}.stats-bar-section{padding:3rem 1.5rem}.stats-bar-container{flex-wrap:wrap;gap:1.5rem}.stat-bar-item{flex:calc(50% - 1rem);padding:.5rem}.stat-bar-number{font-size:2.2rem}.stat-bar-label{letter-spacing:.5px;font-size:.72rem}.stat-bar-divider{display:none}.values-grid{grid-template-columns:1fr;gap:1.5rem}.value-card{padding:2.5rem 1.5rem}.value-card h3{font-size:1.2rem}.feature-list li{gap:1rem}.certs-grid{grid-template-columns:1fr 1fr;gap:1rem}.cert-card{padding:1.8rem .8rem}.cert-card img{height:55px;margin-bottom:1rem}.cert-card h4{font-size:.9rem}.cert-card p{font-size:.82rem}.service-detail-image{min-height:240px}.service-detail-content{padding:2.5rem 1.5rem}.service-detail-title{letter-spacing:-.3px;font-size:1.7rem}.service-detail-title br{display:none}.service-detail-desc{font-size:1rem}.service-feature-list li{font-size:.9rem}.includes-grid{grid-template-columns:1fr;gap:1.2rem}.includes-card{padding:2rem 1.5rem}.process-steps-section{padding:0 1.2rem 4rem}.process-step{gap:1rem}.process-step-number-col{width:44px}.process-step-number{width:44px;height:44px;font-size:.9rem}.process-step-card{padding:0 0 2.5rem}.process-step-title{margin:.5rem 0 .8rem;font-size:1.25rem}.process-step-title br{display:none}.process-step-desc{font-size:.95rem;line-height:1.75}.process-step-details{grid-template-columns:1fr;gap:.4rem}.process-step-details li{font-size:.87rem}.faq-grid{grid-template-columns:1fr;gap:1rem}.faq-card{padding:1.8rem 1.2rem}.faq-card h4{font-size:.97rem}.faq-card p{font-size:.9rem}.filter-tabs{gap:.5rem;margin-top:1.5rem}.filter-tab{letter-spacing:1px;padding:.55rem .9rem;font-size:.7rem}.projects-grid-section{padding:0 1rem 4rem}.projects-grid{grid-template-columns:1fr;gap:.8rem}.project-card{height:260px}.project-card-overlay{opacity:1;background:linear-gradient(#0000 40%,#000c 100%)}.project-card-title{font-size:1.1rem}.awards-cards-grid{grid-template-columns:1fr 1fr;gap:1rem}.award-card{padding:1.8rem .8rem}.award-card-logo{height:55px;margin-bottom:1.2rem}.award-card-logo img{height:38px}.award-brand-text{font-size:1.5rem}.award-card-title{font-size:.92rem}.award-card-years{margin-bottom:.8rem;font-size:.72rem}.award-card-desc{font-size:.8rem;line-height:1.55}.cert-gallery-grid{grid-template-columns:1fr;gap:1.5rem;max-width:100%}.cert-gallery-img-wrap{min-height:300px;padding:1.2rem}.cert-gallery-caption{flex-direction:column;align-items:flex-start;gap:.3rem;padding:1rem 1.2rem}.cert-gallery-caption span:first-child{font-size:.9rem}.lightbox{align-items:flex-end;padding:1rem}.lightbox-inner{max-width:100%}.lightbox-inner img{border-radius:4px;max-height:65vh}.lightbox-close{font-size:1.2rem;top:-2rem}.testimonials-grid{grid-template-columns:1fr;gap:1.2rem}.testimonial-card{padding:2rem 1.5rem}.testimonial-quote{font-size:.97rem}.blog-featured-image{min-height:220px}.blog-featured-content{padding:2rem 1.5rem}.blog-featured-title{letter-spacing:-.2px;font-size:1.45rem}.blog-featured-title br{display:none}.blog-featured-excerpt{margin-bottom:2rem;font-size:.97rem}.blog-grid{grid-template-columns:1fr;gap:1.5rem;padding-top:2rem}.blog-card-image{height:200px}.blog-card-content{padding:1.5rem}.blog-card-title{font-size:1.05rem}.blog-card-excerpt{font-size:.88rem}.contact-layout{gap:2.5rem}.form-row{grid-template-columns:1fr;gap:1rem;margin-bottom:1rem}.form-group-full{margin-bottom:1.5rem}.form-group input,.form-group select,.form-group textarea{padding:.9rem 1rem;font-size:16px}.whatsapp-contact-btn{text-align:center;justify-content:center;width:100%}.service-area-tags{gap:.4rem}.area-tag{padding:.35rem .8rem;font-size:.75rem}.map-pin-container{padding:3rem 1.5rem}.map-pin-container p{font-size:.95rem}.team-photos-grid{grid-template-columns:1fr;gap:1.5rem}.team-photo-image{height:280px}.team-photo-caption{padding:1.4rem 1.5rem}.team-photo-caption h4{font-size:1rem}.team-photo-caption p{font-size:.88rem}.watch-work-section{padding:4rem 0}.watch-work-container{grid-template-columns:1fr;gap:3rem;padding:0 1.5rem}.watch-work-title{letter-spacing:-1px;font-size:2.4rem}.watch-work-desc{font-size:.95rem}.watch-work-stat-num{font-size:1.8rem}.watch-reel-wrap{height:420px}.watch-reel-card{width:180px}.portfolio-tabs{justify-content:center;gap:.5rem;margin-bottom:1.5rem}.portfolio-tab{padding:.65rem 2rem;font-size:.78rem}.video-grid{grid-template-columns:repeat(2,1fr);gap:.7rem}.video-play-btn{width:40px;height:40px}.video-modal-content{width:auto;max-width:92vw;max-height:85vh}.video-modal-close{top:1rem;right:1rem}.mobile-menu{top:65px}.mobile-menu ul{padding:.5rem 1.2rem 1.5rem}.mobile-menu ul li a{letter-spacing:.8px;padding:.95rem 0;font-size:.85rem}.mobile-cta-btn{letter-spacing:1.5px;text-align:center;width:100%;margin-top:1.2rem;padding:.8rem 1.5rem;font-size:.8rem!important}}@media (width<=480px){.hero-title{font-size:2rem}.page-hero-title{font-size:1.9rem}.section-title,.about-intro-title{font-size:1.75rem}.virtual-consult-title{font-size:1.65rem}.page-cta-section h2{font-size:1.55rem}.awards-cards-grid,.certs-grid{grid-template-columns:1fr}.stat-bar-item{flex:100%}.intro-logo{height:55px}.about-intro-logos{gap:1.2rem}.project-card{height:220px}.watch-work-title{font-size:2rem}.watch-reel-wrap{height:360px}.watch-reel-card{width:150px}.video-grid{grid-template-columns:repeat(2,1fr)}}
