*{margin:0;padding:0;box-sizing:border-box;}

:root{
    --bg-color:#f8f9fb;
    --text-color:#1c1c1c;
    --primary:#e65100;
    --card-bg:#ffffff;
    --header-bg:#ffffff;
    --section-dark:#f1f3f6;
}

body.dark{
    --bg-color:#0d1117;
    --text-color:#e6edf3;
    --primary:#ff7b00;
    --card-bg:#161b22;
    --header-bg:#11161c;
    --section-dark:#0f141a;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg-color);
    color:var(--text-color);
    scroll-behavior:smooth;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.top-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left{
    display:flex;
    gap:20px;
}

header{
    background:var(--header-bg);
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo{
    font-size:22px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s, color 0.3s;
    position: relative;
    white-space: nowrap;
}

.logo:hover{
    transform: scale(1.05);
    color: #ff7b00;
}

.logo::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e65100, #ff7b00);
    border-radius: 2px;
}


nav{
    margin-left:auto;
}

nav ul{
    list-style:none;
    display:flex;
    align-items:center;
}

.nav-toggle{
    margin-left:30px;
}

nav ul li a {
    position: relative;
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

nav ul li a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -8px;
    left: 0;
    background: var(--primary);
    border-radius: 3px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

nav ul li a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

nav ul li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 20px;
    background: var(--primary);
    margin: 0 15px;
    vertical-align: middle;
}

#menu li:nth-last-child(2)::after {
    content: none;
}

.more-info{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height 0.5s ease, opacity 0.5s ease;
}

.box:hover .more-info{
  max-height:100px;
  opacity:1;
}

.reveal{
    opacity:0;
    transform:translateY(30px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.hero{
    height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    background:url("../images/bg.png") center/cover no-repeat;
    background-attachment: fixed;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.4)
    );
    z-index:1;
    pointer-events:none;
    backdrop-filter: blur(5px);
}


.hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1200px;
    margin:auto;
}


.hero h1{
    font-size:48px;
    font-weight:700;
    color:#ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.9);
    margin-bottom:15px;
    transition: transform 0.4s ease;
}

.hero h1:hover{
    transform: scale(1.05);
}

.hero .btn{
    padding:18px 50px;
    font-size:18px;
    font-weight:700;
    border-radius:50px;
    background:linear-gradient(135deg,#ff7b00,#e65100);
    color:#fff;
    text-transform:uppercase;
    letter-spacing:1px;
    box-shadow: 0 10px 30px rgba(255,123,0,0.6);
    transition: all 0.35s ease;
}

.hero .btn:hover{
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255,123,0,0.8), 0 0 50px rgba(255,123,0,0.4);
}

.hero h2{
    font-size:22px;
    color:#fff;
    font-weight:400;
    margin-bottom:40px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
    margin-top:50px;
}

.hero-features .feature{
    display:flex;
    flex-direction:column;
    align-items:center;
    color:#fff;
    text-align:center;
    max-width:140px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-features .feature:hover{
    transform: translateY(-8px);
    color:#ff7b00;
}

.hero-features .feature:hover .icon{
    transform: scale(1.2) rotate(15deg);
}

.hero-features .feature .icon{
    font-size: clamp(22px, 3vw, 32px);
}

.hero-features .feature p{
    font-size: clamp(13px, 1.5vw, 16px);
}


.btn{
    padding:14px 35px;
    border-radius:30px;
    text-decoration:none;
    color:white;
    background:var(--primary);
    transition:0.3s;
}

.btn:hover{
    transform:scale(1.05);
}

.services{
    padding:80px 0;
    text-align:center;
    background:var(--bg-color);
}

.service-boxes{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:30px;
  margin-top:40px;
}

.box{
  background:var(--card-bg);
  padding:30px;
  border-radius:12px;
  position:relative;
  overflow:hidden;
  cursor:pointer;
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.box:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.icon{
    font-size:40px;
    margin-bottom:15px;
}

.about{
    padding:80px 0;
    background:var(--section-dark);
    text-align:center;
}

.about h2 {
    margin-bottom: 35px;
}

.contact{
    padding:80px 0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:0px;
    text-align:center;
    min-height: 100vh;
}

.contact h2{
    margin-bottom: 35px;
}

.contact-info{
    font-size:18px;
    line-height:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.contact-info p{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:12px;
    text-align: left;
}

.contact-info a{
    color:var(--text-color);
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.contact-info a:hover{
    color:var(--primary);
}

.contact-info i{
    color:var(--primary);
    font-size:20px;
    width:25px;
    text-align:center;
    transition:0.3s;
}

.contact-info p:hover i{
    transform:scale(1.2);
}

.map{
    margin-top:20px;
}

.map iframe{
    width:100%;
    height:400px;
    border:0;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.theme-switch{
    display:flex;
    align-items:center;
    gap:6px;
}

.switch{
    position:relative;
    width:45px;
    height:24px;
}

.switch input{
    opacity:0;
    width:0;
    height:0;
}

.slider{
    position:absolute;
    cursor:pointer;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:#ccc;
    border-radius:30px;
    transition:0.3s;
}

.slider:before{
    content:"";
    position:absolute;
    height:18px;
    width:18px;
    left:3px;
    bottom:3px;
    background:white;
    border-radius:50%;
    transition:0.3s;
}

input:checked + .slider{
    background:var(--primary);
}

input:checked + .slider:before{
    transform:translateX(20px);
}

footer{
    background:var(--header-bg);
    border-top:1px solid rgba(0,0,0,0.08);
    margin-top:60px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:40px;
    padding:70px 0;
    position:relative;
    text-align:left;
}

.footer-col:not(:first-child)::before{
    content:"";
    position:absolute;
    left:0;
    top:10%;
    height:80%;
    width:2px;
    background:linear-gradient(to bottom, transparent, rgba(0,0,0,0.18), transparent);
    filter:blur(1.2px);
}

body.dark .footer-col:not(:first-child)::before{
    background:linear-gradient(to bottom, transparent, rgba(255,255,255,0.30), transparent);
}

.footer-col{
    display:flex;
    flex-direction:column;
    align-items:center;
    position:relative;
}

.footer-col h3,
.footer-col h4{
    margin-bottom:20px;
    color:var(--primary);
    font-weight:600;
    font-size:18px;
}

.footer-col p{
    line-height:1.7;
    font-size:14px;
    max-width:280px;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    text-decoration:none;
    color:var(--text-color);
    font-size:14px;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:var(--primary);
}

.footer-col a{
    color: var(--text-color);
    text-decoration:none;
    transition:0.3s;
}

.footer-col a:hover{
    color: var(--primary);
}

body.dark .footer-col a:hover{
    color: var(--primary) !important;
}

.footer-col i.fa-instagram{
    color:var(--primary);
}

.footer-col i{
    color:var(--primary);
    margin-right:6px;
}

.contact-info a[href*="instagram"] {
    color: var(--primary) !important;
}
.contact-info a[href*="instagram"] i {
    color: var(--primary) !important;
}

.footer-col a.instagram-link {
    color: var(--primary) !important;
}
.footer-col a.instagram-link i {
    color: var(--primary) !important;
}

.footer-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-menu li a i {
    font-size: 14px;
    color: var(--primary);
    transition: 0.3s;
}

.footer-menu li a:hover i {
    transform: translateX(3px);
}

.bottom-bar{
    background:linear-gradient(to right, var(--header-bg), var(--section-dark));
    border-top:1px solid rgba(0,0,0,0.08);
    padding:25px 0;
    text-align:center;
    font-size:14px;
    letter-spacing:0.5px;
    color:var(--text-color);
    position:relative;
}

.bottom-bar .designer{
    position:absolute;
    right:30px;
    bottom:50%;
    transform:translateY(50%);
    font-size:13px;
    opacity:0.8;
}

.bottom-bar::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:80px;
    height:3px;
    background:var(--primary);
    border-radius:5px;
}

.section-divider{
    width:100%;
    height:80px;
    position:relative;
    margin-top:60px;
}

.section-divider::before{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:4px;
    background:var(--primary);
    border-radius:10px;
}

.section-divider::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:15px;
    width:300px;
    height:1px;
    background:linear-gradient(to right, transparent, var(--primary), transparent);
    opacity:0.4;
}

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    transition:0.3s;
    z-index:9999;
}

.whatsapp img{
    width:35px;
    height:35px;
}

.whatsapp:hover{
    transform:scale(1.1);
}

.instagram{
    position:fixed;
    bottom:100px;
    right:25px;
    width:65px;
    height:65px;
    background:#E1306C;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    transition:0.3s;
    z-index:9999;
}

.instagram img{
    width:35px;
    height:35px;
}

.instagram:hover{
    transform:scale(1.1);
    box-shadow:0 15px 35px rgba(0,0,0,0.35);
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(4px);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:998;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-menu-title{
    list-style:none;
    font-size:14px;
    color:var(--primary);
    margin-bottom:10px;
    letter-spacing:1px;
    text-transform:uppercase;
    pointer-events:none;
}

.mobile-menu-header {
    display: none;
}

@media(max-width:1100px){

.mobile-menu-header {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-color);
    padding-bottom: 8px;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.mobile-menu-header span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.menu-divider {
    width: 100px;
    height: 3px;
    background: #e30613;
    margin: 8px auto 0 auto;
    border-radius: 2px;
}

    .nav-toggle{
    margin-left:0 !important;
    display:flex;
    justify-content:center;
    width:100%;
    margin-top:30px;
}

    .mobile-theme{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

    nav ul{
    position:fixed;
    top:0;
    right:-280px;
    width:260px;
    height:100vh;
    background: linear-gradient(
        180deg,
        var(--header-bg),
        var(--section-dark)
    );
    flex-direction:column;
    padding:100px 25px 40px 25px;
    gap:28px;
    transition:right 0.4s ease;
    box-shadow:-15px 0 40px rgba(0,0,0,0.25);
    z-index:1000;
}

    nav ul.active{
        right:0;
}

    nav ul li{
        width:100%;
        text-align: center;
}

    nav ul li a{
    display:flex;
    align-items:center;
    gap:12px;
}

    nav ul li a:hover{
        color: var(--primary);
        padding-left:8px;
}

    nav ul li::after{
        display:none !important;
}

    nav ul li a::after{
        display:none;
}

    .menu-toggle{
        display:flex;
        flex-direction:column;
        gap:6px;
        z-index:1100;
        cursor:pointer;
}

    .menu-toggle span{
        width:28px;
        height:3px;
        background:var(--text-color);
        border-radius:5px;
        transition:0.4s;
}

    .menu-toggle.active span:nth-child(1){
        transform:rotate(45deg) translate(5px,5px);
}

    .menu-toggle.active span:nth-child(2){
        opacity:0;
}

    .menu-toggle.active span:nth-child(3){
        transform:rotate(-45deg) translate(6px,-6px);
}

    .theme-switch{
        margin-left:0 !important;
}

    .nav-toggle .theme-switch{
        width:100%;
        justify-content:center;
}

    .service-boxes{
        grid-template-columns:1fr;
        gap:20px;
}

    .hero h1{
        font-size:34px;
}

    .hero h2{
        font-size:18px;
}

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:40px;
}

    .footer-col{
        text-align:center;
        max-width:100%;
}

    .footer-col::before{
        display:none;
}

    .contact-info p{
        justify-content:center;
        text-align:center;
}

    .contact-info i{
        width:auto;
}

    .instagram, .whatsapp{
        width:55px;
        height:55px;
}

    .instagram img, .whatsapp img{
        width:28px;
        height:28px;
}

    .btn{
        padding:12px 25px;
        font-size:16px;
}
}

@media(max-width:600px){
    .hero{
        padding:100px 20px 60px 20px;
        background-attachment:scroll;
    }

    .hero h1{
        font-size:26px;
        line-height:1.3;
    }

    .hero h2{
        font-size:15px;
        margin-bottom:25px;
    }

    .hero .btn{
        padding:14px 30px;
        font-size:14px;
    }

    .hero-features{
        flex-direction:column;
        align-items:center;
        gap:12px;
    }   

    .hero-features .feature{
        max-width:120px;
    }

    .service-boxes{
        gap:15px;
    }

    .box{
        padding:20px;
    }

    .footer-container{
        padding:50px 20px;
        gap:30px;
    }

    .contact-info{
        font-size:16px;
    }

    .map iframe{
        height:300px;
    }

    .instagram, .whatsapp{
        width:50px;
        height:50px;
    }

    .instagram img, .whatsapp img{
        width:24px;
        height:24px;
    }

    .bottom-bar{
        flex-direction:column;
        gap:8px;
    }

    .bottom-bar .designer{
        position:static;
        transform:none;
    }
}