/*==================================
GLOBAL STYLES
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Poppins",sans-serif;
    background:#f5f9fc;
    color:#333;
    overflow-x:hidden;
}

.container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
}

/*==================================
HEADER
==================================*/

header{
    position:relative;
    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("images/logo.pt.png");

    background-size:cover;

    /* Adjust this if the face is hidden */
    background-position:center 25%;

    background-repeat:no-repeat;

    display:flex;
    flex-direction:column;
}

.overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,.65),
        rgba(0,0,0,.35),
        rgba(0,0,0,.10)
    );
}

/*==================================
NAVIGATION
==================================*/

nav{
    position: relative;
    z-index: 100;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 60px;

    background: rgba(0,0,0,.08);

    border-bottom: 1px solid rgba(255,255,255,.08);
}
/*==================================
LOGO
==================================*/

.logo{

    display:flex;
    align-items:center;
    gap:18px;

}

.logo img{

    width:80px;
    height:80px;

    object-fit:cover;

    border-radius:50%;

    border:4px solid white;

    background:white;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    filter:grayscale(100%);

    transition:filter .3s;

}

.logo img:hover{

    filter:grayscale(0%);

}

.logo-text{

    display:flex;
    flex-direction:column;

}

.logo-text h2{

    color:white;

    font-size:22px;

    font-weight:700;

    line-height:1;

}

.logo-text span{

    color:#00b7df;

    font-size:15px;

    margin-top:5px;

    letter-spacing:2px;

}

/*==================================
NAVIGATION LINKS
==================================*/

nav ul{

    display:flex;

    list-style:none;

    gap:50px;

}

nav ul li{

    list-style:none;

}

nav ul li a{

    color:white;

    text-decoration:none;

    font-size:19px;

    font-weight:500;

    transition:.3s;

}

nav ul li a:hover{

    color:#00b7df;

}

/*==================================
HAMBURGER
==================================*/

#menu-toggle{

    display:none;

}

.hamburger{

    display:none;

    color:white;

    font-size:34px;

    cursor:pointer;

}

/*==================================
HERO
==================================*/

.hero{
    position:relative;
    z-index:2;
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 30px;
}

.hero-content{
    max-width:700px;
}

.hero h1{
    color:white;
    font-size:72px;
    font-weight:700;
    line-height:1.1;
}

.hero h2{
    color:#00b7df;
    font-size:42px;
    margin:15px 0;
    font-weight:600;
}

.hero p{
    color:white;
    font-size:20px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/*==================================
BUTTONS
==================================*/

.button{
    display:inline-block;
    padding:16px 36px;
    background:#00b7df;
    color:white;
    text-decoration:none;
    border-radius:35px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.button:hover{
    background:#0099bc;
    transform:translateY(-4px);
}

/*==================================
CONTENT SECTIONS (About / Services / Why Choose Us)
==================================*/

.content-section{
    max-width:1200px;
    background:white;
    margin:70px auto;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.content-section h2{
    text-align:center;
    color:#00b7df;
    margin-bottom:30px;
    font-size:38px;
}

.content-section p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

/*==================================
SERVICES GRID
==================================*/

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.service-card{
    background:#eef8fb;
    border-radius:18px;
    padding:30px;
    text-align:center;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.service-card h3{
    margin-bottom:15px;
    color:#010627;
}

.service-card p{
    font-size:16px;
}

/*==================================
FEATURES ("Why Choose Us")
==================================*/

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.feature{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.feature-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#00b7df;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:bold;
    flex-shrink:0;
}

.feature h3{
    margin-bottom:10px;
    color:#010627;
}

/*==================================
CTA
==================================*/

.cta{
    max-width:1200px;
    text-align:center;
    margin:70px auto;
    padding:60px 30px;
    border-radius:20px;
    background:linear-gradient(135deg,#00b7df,#0099bc);
    color:white;
}

.cta h2{
    color:white;
    font-size:40px;
    margin-bottom:20px;
}

.cta p{
    color:white;
    margin-bottom:30px;
}

.cta .button{
    background:white;
    color:#00b7df;
}

.cta .button:hover{
    background:#010627;
    color:white;
}

/*==================================
CONTACT US
==================================*/

.contact{
    padding:80px 30px;
    background:#eef8fb;
    text-align:center;
}

.contact h2{
    font-size:42px;
    color:#010627;
    margin-bottom:15px;
}

.contact > p{
    font-size:18px;
    color:#666;
    margin-bottom:45px;
}

/* Contact cards */

.contact-details{
    display:flex;
    justify-content:center;
    align-items:stretch;
    flex-wrap:wrap;
    gap:15px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:12px;

    background:#fff;

    padding:14px 18px;

    border-radius:12px;

    width:240px;
    min-height:80px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;
}

.contact-item:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 28px rgba(0,0,0,.15);
}

.contact-item i{
    font-size:18px;
    color:#00b7df;
    min-width:20px;
}

.contact-item a,
.contact-item p{
    margin:0;
    text-align:left;
    text-decoration:none;
    color:#010627;
    font-size:14px;
    line-height:1.5;
    font-weight:500;
}

.contact-item a:hover{
    color:#00b7df;
}

/*==================================
OPERATING HOURS
==================================*/

.hours{
    max-width:700px;
    margin:60px auto 0;
    padding:35px;

    background:#010627;
    color:white;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.hours h3{
    text-align:center;
    color:#00b7df;
    font-size:30px;
    margin-bottom:30px;
}

.hours-table{
    width:100%;
    border-collapse:collapse;
}

.hours-table td{
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,.2);
    font-size:18px;
}

.hours-table tr:last-child td{
    border-bottom:none;
}

.hours-table td:first-child{
    font-weight:600;
}

.hours-table td:last-child{
    text-align:right;
    color:white;
}

/*==================================
MAP EMBED
==================================*/

.map-embed{
    max-width:700px;
    margin:40px auto 0;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.map-embed iframe{
    display:block;
}

@media(max-width:768px){
  .hours{
    padding:25px;
}

.hours h3{
    font-size:24px;
}

.hours-table td{
    display:block;
    text-align:center !important;
    padding:6px 0;
    border-bottom:none;
    font-size:16px;
}

.hours-table tr{
    display:block;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.2);
}

.hours-table tr:last-child{
    border-bottom:none;
}
}

/*==================================
FOOTER
==================================*/

footer{
    background:#010627;
    color:white;
    text-align:center;
    padding:30px 20px;
    font-size:16px;
    line-height:1.8;
}

footer a{
    color:#00b7df;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

footer a:hover{
    color:white;
    text-decoration:underline;
}

/*==================================
TABLET
==================================*/

@media (max-width:992px){

    nav{
        padding:20px 35px;
    }

    .hero h1{
        font-size:60px;
    }

    .hero h2{
        font-size:38px;
    }

    .hero p{
        font-size:20px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .features{
        grid-template-columns:1fr;
    }

}

/*==================================
MOBILE
==================================*/

@media (max-width:768px){

    nav{
        padding:20px;
        flex-wrap:wrap;
    }

    /* SHOW HAMBURGER */
    .hamburger{
        display:block;
        font-size:34px;
        color:white;
        cursor:pointer;
    }

    /* HIDE MENU */
    nav ul{
        display:none;
        width:100%;
        flex-direction:column;
        text-align:center;
        gap:20px;
        margin-top:20px;
        background:#010627;
        padding:20px;
        border-radius:12px;
    }

    /* SHOW MENU WHEN CLICKED */
    #menu-toggle:checked ~ ul{
        display:flex;
    }

    .hero{
        padding:40px 20px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero h2{
        font-size:28px;
    }

    .hero p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .button{
        width:220px;
        text-align:center;
    }

    .content-section{
        padding:30px;
        margin:40px auto;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .contact-details{
        flex-direction:column;
        align-items:center;
    }

    .contact-item{
        width:95%;
        max-width:380px;
    }

    .hours{
        margin:40px 20px 0;
    }

    .map-embed{
        margin:30px 20px 0;
    }

}

/*==================================
SMALL PHONES
==================================*/

@media (max-width:480px){

    .logo img{
        width:65px;
        height:65px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero h2{
        font-size:24px;
    }

    .hero p{
        font-size:15px;
    }

}