 /* ==========================
   TOP GLASS HEADER
========================== */


.top-header{

    height:45px;

    padding:0 1%;

    display:flex;

    justify-content:space-between;

    align-items:center;


    background:

    linear-gradient(
        135deg,
        rgba(6,78,59,0.95),
        rgba(6,78,59,0.95)
    );


    color:white;


    backdrop-filter:blur(15px);


    font-size:13px;


    position:relative;

    z-index:1001;


}



.top-left,
/* ==========================
   Premium Glass Social Icons
========================== */

.top-right{
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-right .social{
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;
    font-size: 18px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 8px 24px rgba(0,0,0,.18),
        inset 0 1px 1px rgba(255,255,255,.12);

    transition: all .35s ease;
}

/* Floating Hover Effect */
.top-right .social:hover{
    transform: translateY(-4px) scale(1.08);
}

/* Facebook */
.top-right .facebook:hover{
    background: linear-gradient(135deg,#1877F2,#4A90FF);
    border-color: rgba(255,255,255,.35);
    box-shadow:
        0 12px 28px rgba(24,119,242,.45),
        0 0 20px rgba(24,119,242,.35);
}

/* WhatsApp */
.top-right .whatsapp:hover{
    background: linear-gradient(135deg,#25D366,#18B856);
    border-color: rgba(255,255,255,.35);
    box-shadow:
        0 12px 28px rgba(37,211,102,.45),
        0 0 20px rgba(37,211,102,.35);
}

/* Icon Animation */
.top-right .social i{
    transition: transform .35s ease;
}

.top-right .social:hover i{
    transform: rotate(10deg) scale(1.15);
}



.top-header a{

    color:white;

    opacity:.9;

    transition:.3s;

}



.top-header a:hover{

    color:#dcfce7;

}

/*=================================
      MOBILE PREMIUM TOP HEADER
==================================*/


.mobile-top-header{

display:none;

}



/*=================================
      MOBILE VERSION
==================================*/


@media(max-width:768px){


/* Hide Desktop Top Header */

.top-header{

display:none;

}



/* Mobile Header */

.mobile-top-header{

display:flex;

flex-direction:column;

justify-content:center;

gap:8px;

padding:12px 15px;

background:

linear-gradient(
135deg,
#063b2b,
#0b5d45,
#15803d
);

color:white;

position:relative;

z-index:10000;

box-shadow:

0 8px 25px rgba(0,0,0,.18);

}



/* Welcome Text */


.mobile-welcome{

text-align:center;

font-size:13px;

font-weight:600;

letter-spacing:.5px;

color:#dcfce7;

}



/* Contact Row */


.mobile-contact{

display:flex;

justify-content:center;

align-items:center;

gap:15px;

flex-wrap:wrap;

}



.mobile-contact a{

display:flex;

align-items:center;

gap:7px;

text-decoration:none;

color:#fff;

font-size:12px;

font-weight:500;

padding:7px 12px;

border-radius:30px;

background:

rgba(255,255,255,.12);

backdrop-filter:blur(10px);

transition:.3s;

}



.mobile-contact a:hover{

background:#22c55e;

transform:translateY(-2px);

}



.mobile-contact i{

color:#86efac;

font-size:13px;

}



}



/* Small Mobile */

@media(max-width:420px){


.mobile-contact{

gap:8px;

}



.mobile-contact a{

font-size:11px;

padding:6px 10px;

}



.mobile-welcome{

font-size:12px;

}


}

/* =========================
   HEADER
========================= */

/*===================================
        PREMIUM HEADER
====================================*/

.header{

position:sticky;

top:0;

z-index:9999;

height:110px;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 7%;

background:rgba(255,255,255,.94);

backdrop-filter:blur(18px);

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

/* Logo */

.logo img{

width:260px;

height:auto;

display:block;

}

/* Navigation */

.navbar{

display:flex;

align-items:center;

gap:38px;
 text-decoration: none;

}
.navbar a{
    position:relative;
    font-size:15px;
    font-weight:600;
    color:#243b32;
    text-decoration:none;
    transition:.35s;
}

.navbar a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

border-radius:20px;

background:#16a34a;

transition:.35s;

}

.navbar a:hover{

color:#16a34a;

}

.navbar a:hover::after,

.navbar .active::after{

width:100%;

}

/* Quote Button */

.quote-btn{

padding:14px 28px;

border-radius:50px;

background:linear-gradient(135deg,#0b5d45,#15803d);

color:#fff !important;

font-weight:600;

box-shadow:0 12px 25px rgba(11,93,69,.25);

transition:.35s;

}

.quote-btn:hover{

transform:translateY(-4px);

box-shadow:0 20px 35px rgba(11,93,69,.35);

}

/* Hamburger */

.menu-btn{

display:none;

font-size:30px;

cursor:pointer;

color:#064e3b;

}

/*===================================
      MOBILE SIDEBAR
====================================*/

.mobile-menu{

position:fixed;

top:0;

right:-320px;

width:300px;

height:100vh;

background:#fff;

box-shadow:-10px 0 40px rgba(0,0,0,.15);

padding:30px;

transition:.4s;

z-index:99999;

display:flex;

flex-direction:column;

}

.mobile-menu.active{

right:0;

}

.mobile-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:35px;

}

.mobile-top img{

width:170px;

}

.close-btn{

font-size:28px;

cursor:pointer;

color:#064e3b;

}

.mobile-menu a{

padding:16px 0;

font-size:17px;

font-weight:500;

color:#333;

border-bottom:1px solid #eee;

transition:.35s;

}

.mobile-menu a:hover{

padding-left:10px;

color:#16a34a;

}

.mobile-quote{

margin-top:30px;

background:#0b5d45;

color:#fff !important;

text-align:center;

padding:15px;

border-radius:40px;

}

.menu-overlay{

position:fixed;

inset:0;

background:rgba(0,0,0,.45);

opacity:0;

visibility:hidden;

transition:.35s;

z-index:99990;

}

.menu-overlay.active{

opacity:1;

visibility:visible;

}

/*===================================
      RESPONSIVE
====================================*/

/*===================================
        MOBILE HEADER SIZE UPDATE
====================================*/

@media(max-width:992px){

/* Main Header */

.header{

height:100px;              /* Increased height */

padding:0 25px;            /* More horizontal space */

}


/* Logo Size */

.logo img{

width:230px;               /* Bigger logo */

}



/* Hide Desktop Menu */

.navbar{

display:none;

}


/* Show Hamburger */

.menu-btn{

display:block;

font-size:34px;

}


}



/*===================================
        SMALL MOBILE
====================================*/

@media(max-width:480px){


.header{

height:90px;

padding:0 18px;

}


.logo img{

width:210px;

}


.menu-btn{

font-size:30px;

}


}
@media(max-width:768px){

.top-header{

height:70px;

padding:0 15px;

font-size:12px;

}


/* Stack content nicely */

.top-left,
.top-right{

gap:12px;

}


.top-right a{

display:none;

}

}
/*==============================
      DROPDOWN MENU
===============================*/

.dropdown{

    position:relative;

}

.dropbtn{

    display:flex;

    align-items:center;

    gap:6px;

}

.dropbtn i{

    font-size:12px;

    transition:.3s;

}

.dropdown-content{

    position:absolute;

    top:45px;

    left:0;

    min-width:260px;

    background:#ffffff;

    border-radius:15px;

    overflow:hidden;

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.35s;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    z-index:999;

}

.dropdown-content a{

    display:block;

    padding:15px 20px;

    color:#333;

    font-size:15px;

    transition:.3s;

    border-bottom:1px solid #eee;

}

.dropdown-content a:last-child{

    border:none;

}

.dropdown-content a:hover{

    background:#064e3b;

    color:#fff;

    padding-left:28px;

}

.dropdown:hover .dropdown-content{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown:hover .dropbtn i{

    transform:rotate(180deg);

}


.quote-btn{

    background:#064e3b;

    color:white !important;

    padding:13px 28px;

    border-radius:30px;

    transition:.3s;

}



.quote-btn:hover{

    background:#16a34a;

    transform:translateY(-3px);

}


/* ===============================
   FLOATING BUTTONS
================================= */

.floating-btn{

    position:fixed;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

    font-size:28px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    z-index:9999;

}


/* WhatsApp */

.whatsapp{

    bottom:100px;

    background:#25D366;

}

.whatsapp:hover{

    background:#1ebc59;

    transform:scale(1.1);

}


/* Call */

.call{

    bottom:25px;

    background:#3d90ee;

}

.call:hover{

    background:#12845c;

    transform:scale(1.1);

}
