/* ==================================================
   RESET
================================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#333333;
    background:#ffffff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
    transition:all .3s ease;
}

ul{
    list-style:none;
}

section{
    position:relative;
    padding:100px 0;
}

/* ==================================================
   VARIABLES
================================================== */

:root{

    --primary:#15195A;
    --secondary:#F58220;

    --dark:#0B0E2E;
    --light:#F8F9FB;

    --white:#ffffff;
    --black:#000000;

    --text:#333333;
    --border:#E5E7EB;

    --shadow:
    0 10px 30px rgba(0,0,0,.08);

    --radius:10px;
}

/* ==================================================
   CONTAINER
================================================== */

.container{
    width:100%;
    padding:0 40px;
}

/* ==================================================
   TYPOGRAPHY
================================================== */

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:'Montserrat',sans-serif;
    font-weight:700;
    color:var(--primary);
    line-height:1.2;
}

h1{
    font-size:64px;
}

h2{
    font-size:48px;
}

h3{
    font-size:32px;
}

p{
    margin-bottom:15px;
}

/* ==================================================
   TOP BAR
================================================== */

.top-bar{

    background:var(--primary);
    color:#fff;

    height:40px;

    display:flex;
    align-items:center;
}

.top-bar .container{

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

.top-bar-left,
.top-bar-right{

    display:flex;
    align-items:center;
    gap:25px;
}

.top-bar a{

    color:#fff;
    font-size:14px;
}

.top-bar i{

    margin-right:8px;
}

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

#site-header{

    position:absolute;
    left:0;
    top:40px;

    width:100%;

    z-index:999;

    transition:.4s ease;
}

.header-container{

    display:flex;
    align-items:center;
    justify-content:space-between;
	gap: 40px;
}

.logo{
    position:relative;
}

.logo img{
    height:75px;
    width:auto;
	padding: 10px;
}

.logo-white{
    display:block;
}

.logo-color{
    display:none;
}

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

#site-header.sticky{

    position:fixed;
    top:0;

    background:#ffffff;

    box-shadow:var(--shadow);
}

#site-header.sticky .logo-white{
    display:none;
}

#site-header.sticky .logo-color{
    display:block;
}

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

.main-nav ul{

    display:flex;
    align-items:center;
    gap:15px;
}

.main-nav a{

    color:#ffffff;

    font-size:16px;
    font-weight:600;

    padding:12px 30px;

    border-radius:50px;

    transition:all .3s ease;
}

.main-nav a.active{

    background:var(--secondary);

    color:#ffffff;

    box-shadow:
    0 5px 15px rgba(21,25,90,.20);
}

.main-nav a:hover{

    background:var(--primary);

    color:#ffffff;
}

#site-header.sticky .main-nav a{

    color:var(--primary);
}

#site-header.sticky .main-nav a.active{

    color:#ffffff;
}

#site-header.sticky .main-nav a:hover{

    background:var(--primary);

    color:#ffffff;
}


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

.btn-quote{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 30px;

    background:var(--secondary);
    color:#ffffff;

    border-radius:50px;

    font-weight:600;
}

.btn-quote:hover{

    background:var(--primary);
    color:#ffffff;
}

/* ==================================================
   MOBILE MENU BUTTON
================================================== */

#mobile-menu-btn{

    display:none;

    background:none;
    border:none;
    cursor:pointer;
}

#mobile-menu-btn span{

    display:block;

    width:28px;
    height:3px;

    background:#ffffff;

    margin:6px 0;
}

#site-header.sticky #mobile-menu-btn span{

    background:var(--primary);
}

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

#mobile-menu{

    position:fixed;

    top:0;
    right:-100%;

    width:200px;
    height:100vh;

    background:#ffffff;

    z-index:9999;

    transition:.4s ease;

    box-shadow:var(--shadow);
}

#mobile-menu.active{

    right:0;
}

#mobile-menu ul{

    display:flex;
    flex-direction:column;

    gap:12px;

    padding:100px 0 30px;

    margin:0;

    list-style:none;
}

#mobile-menu li{

    margin:0;
}

#mobile-menu a{

    display:flex;

    align-items:center;

    justify-content:center;

    width:calc(100% - 15px);

    height:52px;

    color:var(--primary);

    font-size:16px;

    font-weight:600;

    text-align:center;

    transition:.3s ease;

    border-radius:0 50px 50px 0;
}

#mobile-menu a.active{

    background:var(--secondary);

    color:#ffffff;
}

#mobile-menu a:hover{

    background:var(--primary);

    color:#ffffff;
}

#mobile-menu-close{

    position:absolute;

    top:20px;
    right:20px;

    width:50px;
    height:50px;

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

    background:#ffffff;

    border:2px solid var(--secondary);

    border-radius:50%;

    color:var(--secondary);

    font-size:32px;

    font-weight:700;

    cursor:pointer;

    z-index:10001;

    opacity:1 !important;

    visibility:visible !important;
}

#mobile-menu-close:hover{

    background:var(--secondary);

    color:#ffffff;
}

/* ==========================================
   MENU OVERLAY
========================================== */

#menu-overlay{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

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

    opacity:0;

    visibility:hidden;

    transition:.3s ease;

    z-index:9998;
}

#menu-overlay.active{

    opacity:1;

    visibility:visible;
}

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

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:55px;

    padding:0 35px;

    border-radius:50px;

    font-weight:600;
}

.btn-primary{

    background:var(--secondary);
    color:#ffffff;
}

.btn-primary:hover{
	
	padding:14px 40px;
	background:var(--primary);
}

.btn-outline{

    border:2px solid #ffffff;
    color:#ffffff;
}

.btn-outline:hover{

    background:#ffffff;
    color:var(--primary);
}

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

.site-footer{

    background:var(--dark);
    color:#ffffff;

    padding-top:80px;
}

.footer-grid{

    display:grid;
    grid-template-columns:
    2fr
    1fr
    1fr
    1fr;

    gap:50px;
}

.footer-logo{

    max-height:75px;
    margin-bottom:25px;
}

.site-footer h3{

    color:#ffffff;
    margin-bottom:20px;
}

.site-footer a{

    color:#ffffff;
}

.site-footer a:hover{

    color:var(--secondary);
}

.site-footer li{

    margin-bottom:12px;
}

.footer-contact i{

    color:var(--secondary);
    margin-right:10px;
}

.footer-social{

    margin-top:25px;

    display:flex;
    gap:12px;
}

.footer-social a{

    width:42px;
    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-social a:hover{

    background:var(--secondary);
	color: #ffffff;
}

.footer-bottom{

    margin-top:60px;

    padding:25px 0;

    border-top:
    1px solid rgba(255,255,255,.1);

    text-align:center;
}

/* ==================================================
   WHATSAPP
================================================== */

.whatsapp-float{

    position:fixed;

    right:20px;
    bottom:20px;

    width:60px;
    height:60px;

    border-radius:50%;

    background:#25D366;
    color:#ffffff;

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

    font-size:30px;

    z-index:999;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:991px){

    .main-nav,
    .header-cta{

        display:none;
    }

    #mobile-menu-btn{

        display:block;
    }

    .footer-grid{

        grid-template-columns:1fr 1fr;
    }

    h1{
        font-size:48px;
    }

    h2{
        font-size:38px;
    }
}

@media(max-width:767px){
	
	.container{
		
        padding:0 20px;
    }

    .top-bar{

        display:none;
    }

    #site-header{

        top:0;
    }

    .logo img{

        height:60px;
    }

    .footer-grid{

        grid-template-columns:1fr;
    }

    h1{
        font-size:38px;
    }

    h2{
        font-size:30px;
    }

    section{

        padding:70px 0;
    }
}

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

.hero{

    min-height:100vh;

    background:
    url('../images/home/hero.png')
    center center/cover
    no-repeat;

    position:relative;

    display:flex;
    align-items:center;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(11,14,46,.85) 0%,
        rgba(11,14,46,.65) 45%,
        rgba(11,14,46,.35) 100%
    );
}

.hero-content{

    position:relative;

    z-index:2;

    max-width:800px;

    color:#ffffff;
}

.hero-subtitle{

    display:inline-block;

    margin-bottom:20px;

    color:var(--secondary);

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;
}

.hero-content h1{

    color:#ffffff;

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;
}

.hero-content p{

    font-size:20px;

    max-width:700px;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

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

@media (max-width: 767px){

    .hero{
        min-height:100vh;
    }

    .hero-content{
        max-width:100%;
        padding-top:100px;
    }

    .hero-content h1{

        font-size:52px;
        line-height:1.05;

        margin-bottom:20px;
    }

    .hero-content p{

        font-size:18px;
        line-height:1.7;
    }

    .hero-buttons{

        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .hero-buttons .btn{

        width:100%;
        text-align:center;
    }
}

/* ==================================================
   ABOUT OVERVIEW
================================================== */

.about-overview{
    background:#ffffff;
}

.about-grid{

    display:grid;

    grid-template-columns:
    1fr
    1fr;

    gap:80px;

    align-items:center;
}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

.section-tag{

    display:inline-block;

    color:var(--secondary);

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:15px;
}

.about-content h2{

    margin-bottom:25px;
}

.about-content p{

    margin-bottom:20px;

    color:#555;
}

.about-features{

    display:grid;

    grid-template-columns:
    1fr
    1fr;

    gap:15px;

    margin:30px 0;
}

.about-features div{

    font-weight:600;

    color:var(--primary);
}

@media(max-width:991px){

    .about-grid{

        grid-template-columns:1fr;

        gap:40px;
    }

}

/* ==================================================
   SERVICES SECTION
================================================== */

.services-section{

    background:#f8f9fb;
}

.section-header{

    text-align:center;

    max-width:800px;

    margin:0 auto 60px;
}

.section-header h2{

    margin:15px 0 20px;
}

.section-header p{

    color:#666;
}

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.service-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    height:420px;

    cursor:pointer;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.service-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s ease;
}

.service-overlay{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:30px;

    background:
    linear-gradient(
        to top,
        rgba(11,14,46,.95),
        rgba(11,14,46,.20)
    );

    color:#fff;
}

.service-overlay h3{

    color:#fff;

    margin-bottom:10px;

    font-size:24px;
}

.service-overlay p{

    margin-bottom:15px;

    color:rgba(255,255,255,.85);
}

.service-overlay a{

    color:var(--secondary);

    font-weight:600;
}

.service-card:hover img{

    transform:scale(1.08);
}

.service-card:hover{

    transform:translateY(-8px);

    transition:.4s ease;
}

@media(max-width:991px){

    .services-grid{

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

@media(max-width:767px){

    .services-grid{

        grid-template-columns:1fr;
    }
}

/* ==================================================
   WHY CHOOSE US
================================================== */

.why-choose-us{
    background:#ffffff;
    padding-bottom:0;
}

.why-grid{

    display:grid;

    grid-template-columns:
    1fr
    1fr;

    gap:80px;

    align-items:center;
}

.why-image img{

    width:100%;

    border-radius:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.10);
}

.why-content h2{

    margin:15px 0 20px;
}

.why-content p{

    color:#666;
    margin-bottom:30px;
}

.why-features{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;
}

.feature-box{

    background:#eeeeee;

    padding:25px;

    border-radius:15px;

    transition:.3s ease;
}

.feature-box i{

    font-size:28px;

    color:var(--secondary);

    margin-bottom:15px;
}

.feature-box h4{

    margin:0;

    font-size:18px;
}

.feature-box:hover{

    background:var(--primary);

    transform:translateY(-5px);
}

.feature-box:hover h4{

    color:#ffffff;
}

.feature-box:hover i{

    color:var(--secondary);
}

/* ==================================================
   STATS STRIP
================================================== */

.stats-strip{

    margin-top:80px;

    background:var(--primary);

    padding:60px 0;
}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    text-align:center;
}

.stat-item h3{

    color:var(--secondary);

    font-size:56px;

    margin-bottom:10px;
}

.stat-item p{

    color:#ffffff;

    margin:0;
}

@media(max-width:991px){

    .why-grid{

        grid-template-columns:1fr;

        gap:50px;
    }

    .stats-grid{

        grid-template-columns:
        repeat(2,1fr);

        gap:40px;
    }
}

@media(max-width:767px){

    .why-features{

        grid-template-columns:1fr;
    }

    .stats-grid{

        grid-template-columns:1fr;
    }
}

/* ==================================================
   FEATURED PROJECTS
================================================== */

.featured-projects{

    background:#f8f9fb;
}

.projects-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;
}

.project-large{

    grid-column:1 / -1;

    height:850px !important;
}

.project-card{

    position:relative;

    height:500px;

    overflow:hidden;

    border-radius:20px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    cursor:pointer;
}

.project-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s ease;
}

.project-overlay{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:35px;

    background:
    linear-gradient(
        to top,
        rgba(11,14,46,.95),
        rgba(11,14,46,.20)
    );

    color:#ffffff;
}

.project-overlay span{

    display:inline-block;

    margin-bottom:10px;

    color:var(--secondary);

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;
}

.project-overlay h3{

    color:#ffffff;

    margin-bottom:8px;
}

.project-overlay p{

    margin-bottom:15px;

    color:rgba(255,255,255,.85);
}

.project-overlay a{

    color:var(--secondary);

    font-weight:600;
}

.project-card:hover img{

    transform:scale(1.08);
}

.project-card:hover{

    transform:translateY(-8px);

    transition:.4s ease;
}

.projects-button{

    text-align:center;

    margin-top:60px;
}

/* MOBILE */

@media(max-width:991px){

    .projects-grid{

        grid-template-columns:1fr;
    }

    .project-large{

        grid-column:auto;
    }

}

/* ==================================================
   CONSTRUCTION PROCESS
================================================== */

.construction-process{

    background:#ffffff;
}

.process-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.process-step{

    background:#eeeeee;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.3s ease;
}

.process-number{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--primary);

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;
}

.process-step h3{

    margin-bottom:15px;
}

.process-step p{

    color:#666;
}

.process-step:hover{

    background:var(--primary);

    transform:translateY(-8px);
}

.process-step:hover h3,
.process-step:hover p{

    color:#ffffff;
}

.process-step:hover .process-number{

    background:var(--secondary);

    color:#ffffff;
}

@media(max-width:991px){

    .process-grid{

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

}

@media(max-width:767px){

    .process-grid{

        grid-template-columns:1fr;
    }

}

/* ==================================================
   TESTIMONIALS
================================================== */

.testimonials{

    background:#f8f9fb;
}

.testimonial-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.testimonial-card{

    background:#ffffff;

    padding:40px;

    border-radius:20px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.stars{

    color:var(--secondary);

    font-size:22px;

    margin-bottom:20px;
}

.testimonial-card p{

    color:#666;

    margin-bottom:25px;

    font-style:italic;
}

.testimonial-card h4{

    margin:0;

    color:var(--primary);
}

@media(max-width:991px){

    .testimonial-grid{

        grid-template-columns:1fr;
    }

}

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

.cta-section{

    position:relative;

    padding:120px 0;

    background:
    linear-gradient(
        rgba(21,25,90,.90),
        rgba(21,25,90,.90)
    ),
    url('../images/cta-bg.png');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    text-align:center;
}

.cta-content{

    max-width:900px;

    margin:0 auto;
}

.cta-content h2{

    color:#ffffff;

    margin:20px 0;

    font-size:56px;
}

.cta-content p{

    color:rgba(255,255,255,.90);

    font-size:20px;

    margin-bottom:40px;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.btn-primary{

    display:inline-block;

    padding:14px 40px;

    background:var(--secondary);

    color:#ffffff;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.btn-primary:hover{
	
	border:2px solid #ffffff;
}

.btn-secondary-new{

    display:inline-block;

    padding:18px 40px;

    background:#25D366;

    color:#ffffff;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.btn-secondary-new:hover{

    transform:translateY(-3px);
}

.btn-secondary{

    display:inline-block;

    padding:18px 40px;

    border:2px solid #ffffff;

    color:#ffffff;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.btn-secondary:hover{

    background:#ffffff;

    color:var(--primary);
}

@media(max-width:767px){

    .cta-content h2{

        font-size:38px;
    }

    .cta-content p{

        font-size:18px;
    }

}

/* ==================================================
   PAGE BANNER
================================================== */

.page-banner{

    position:relative;

    height:420px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:
    url('../images/home/page-banner.png')
    center center / cover no-repeat;
}

.page-banner-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        rgba(11,14,46,.85),
        rgba(11,14,46,.75)
    );
}

.page-banner .container{

    position:relative;

    z-index:2;
}

.page-banner-content{

    text-align:center;

    color:#ffffff;
}

.page-banner-content h1{

    color:#ffffff;

    font-size:56px;

    margin-bottom:15px;
}

.page-banner-content p{

    max-width:700px;

    margin:0 auto 25px;

    color:rgba(255,255,255,.90);

    font-size:18px;
}

.breadcrumb{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    font-size:16px;
}

.breadcrumb a{

    color:var(--secondary);

    font-weight:600;
}

.breadcrumb .current{

    color:#ffffff;
}

/* MOBILE */

@media(max-width:767px){

    .page-banner{

        height:300px;
    }

    .page-banner-content h1{

        font-size:34px;
    }

    .page-banner-content p{

        font-size:16px;
    }

}

/* ==================================================
   ABOUT PAGE
================================================== */

.about-page-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.about-page-image img{

    width:100%;

    border-radius:20px;

    box-shadow:var(--shadow);
}

.about-page-content h2{

    margin:20px 0;

    font-size:48px;

    line-height:1.2;
}

.about-page-content p{

    margin-bottom:20px;

    font-size:18px;

    line-height:1.8;

    color:#666;
}

/* ==================================================
   MISSION VISION
================================================== */

.mission-vision{

    padding:100px 0;

    background:#f8f9fc;
}

.mission-vision-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;
}

.mission-box{

    background:#ffffff;

    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.3s ease;
}

.mission-box:hover{

    transform:translateY(-8px);
}

.mission-box img{

    width:100%;

    border-radius:15px;

    margin-bottom:25px;
}

.mission-box h3{

    color:var(--primary);

    font-size:30px;

    margin-bottom:15px;
}

.mission-box p{

    color:#666;

    line-height:1.8;
}

/* ==================================================
   ABOUT FEATURES
================================================== */

.about-features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:50px;
}

.about-feature{

    background:#eeeeee;

    padding:35px 25px;

    border-radius:15px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.3s ease;
}

.about-feature i{

    font-size:42px;

    color:var(--secondary);

    margin-bottom:20px;

    display:block;
}

.about-feature h3{

    font-size:20px;

    color:var(--primary);

    margin:0;
}

.about-feature:hover{

    transform:translateY(-8px);

    background:var(--primary);
}

.about-feature:hover i,
.about-feature:hover h3{

    color:#ffffff;
}

/* ==================================================
   EXPERTISE
================================================== */

.expertise-section{

    padding:100px 0;

    background:#f8f9fc;
}

.expertise-grid{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

.expertise-grid div{

    background:#ffffff;

    padding:35px;

    border-left:5px solid var(--secondary);

    border-radius:15px;

    box-shadow:var(--shadow);

    font-weight:600;

    transition:.3s ease;
}

.expertise-grid div:hover{

    transform:translateY(-8px);

    border-left-color:var(--primary);
}

.expertise-card{

    background:#ffffff;

    padding:35px 30px;

    border-radius:15px;

    box-shadow:var(--shadow);

    text-align:center;

    transition:.3s ease;

    height:100%;
}

.expertise-card i{

    font-size:42px;

    color:var(--secondary);

    margin-bottom:20px;
}

.expertise-card h3{

    color:var(--primary);

    font-size:22px;

    margin-bottom:12px;
}

.expertise-card p{

    color:#666;

    line-height:1.7;

    margin:0;
}

.expertise-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

    border-color:var(--secondary);
}

.expertise-card:hover i{

    color:var(--primary);
}

/* ==================================================
   STATS STRIP
================================================== */

.stats-strip{

    padding:100px 0;

    background:var(--primary);
}

.stats-strip .stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.stats-strip .stat-item{

    text-align:center;
}

.stats-strip h3{

    color:#ffffff;

    font-size:72px;

    margin-bottom:10px;
}

.stats-strip p{

    color:rgba(255,255,255,.9);

    font-size:18px;
}

.stats-strip .counter::after{

    content:"+";
}

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

@media(max-width:991px){

    .about-page-grid{

        grid-template-columns:1fr;

        gap:40px;
    }

    .mission-vision-grid{

        grid-template-columns:1fr;
    }

    .about-features-grid{

        grid-template-columns:1fr;
    }

    .expertise-grid{

        grid-template-columns:1fr;
    }

    .stats-strip .stats-grid{

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

    .about-page-content h2{

        font-size:38px;
    }

}

@media(max-width:767px){

    .stats-strip .stats-grid{

        grid-template-columns:1fr;
    }

    .stats-strip h3{

        font-size:42px;
    }

    .about-page-content h2{

        font-size:32px;
    }

}

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

.about-cta{

    padding:100px 0;

    background:
    linear-gradient(
        rgba(21,25,90,.92),
        rgba(21,25,90,.92)
    ),
    url('../images/cta-bg.png');

    background-size:cover;

    background-position:center;

    text-align:center;
}

.about-cta-content{

    max-width:900px;

    margin:0 auto;
}

.about-cta-content h2{

    color:#ffffff;

    margin:20px 0;

    font-size:52px;
}

.about-cta-content p{

    color:rgba(255,255,255,.90);

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;
}

.about-cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.btn-outline{

    display:inline-block;

    padding:12px 40px;

    border:2px solid #ffffff;

    color:#ffffff;

    border-radius:50px;

    transition:.3s ease;
}

.btn-outline:hover{

    background:#ffffff;

    color:var(--primary);
}

@media(max-width:767px){

    .about-cta{

        padding:80px 20px;
    }

    .about-cta-content h2{

        font-size:34px;
    }

    .about-cta-buttons{

        flex-direction:column;
    }

    .about-cta-buttons a{

        width:100%;
    }

}

/* ==================================================
   SERVICES PAGE
================================================== */

.service-detail{

    padding:100px 0;
}

.alt-bg{

    background:#f8f9fc;
}

.service-detail-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.service-detail-grid.reverse .service-detail-image{

    order:2;
}

.service-detail-grid.reverse .service-detail-content{

    order:1;
}

.service-detail-image img{

    width:100%;

    display:block;

    border-radius:20px;

    box-shadow:var(--shadow);
}

.service-detail-content h2{

    margin:20px 0;

    font-size:48px;

    line-height:1.2;

    color:var(--primary);
}

.service-detail-content p{

    font-size:18px;

    line-height:1.9;

    color:#666;

    margin-bottom:25px;
}

.service-detail-content ul{

    margin:0;

    padding:0;

    list-style:none;
}

.service-detail-content ul li{

    margin-bottom:12px;

    display:flex;

    align-items:center;

    gap:10px;

    color:#444;
}

.service-detail-content ul li i{

    color:var(--secondary);
}

.service-highlight{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#f8f9fc;

    padding:12px 18px;

    border-radius:50px;

    margin-top:20px;

    color:var(--primary);

    font-weight:600;
}

/* ==================================================
   PROCESS SECTION
================================================== */

.process-section{

    padding:100px 0;

    background:#ffffff;
}

.process-grid-pages{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.process-card-pages{

    position:relative;

    background:#eeeeee;

    padding:40px 25px;

    text-align:center;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.3s ease;
}

.process-card-pages:hover{

    transform:translateY(-10px);
}

.process-card-pages span{

    width:70px;
    height:70px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--secondary);

    color:#ffffff;

    font-size:24px;

    font-weight:700;
}

.process-card-pages h3{

    color:var(--primary);

    font-size:22px;

    margin:0;
}

.process-card-pages i{

    font-size:50px;

    color:var(--secondary);

    margin-bottom:20px;

    display:block;
}

.process-card-pages p{

    margin-top:15px;

    color:#666;

    line-height:1.7;
}

.service-btn{

    display:inline-block;

    margin-top:20px;

    padding:14px 30px;

    background:var(--secondary);

    color:#ffffff;

    border-radius:50px;

    font-weight:600;

    transition:.3s ease;
}

.service-btn:hover{

    background:var(--primary);

    color:#ffffff;

    transform:translateY(-3px);
}

/* ==================================================
   SERVICES INTRO
================================================== */

.services-intro{

    padding:100px 0;
}

.services-intro .section-header{

    max-width:900px;

    margin:auto;
}

.service-detail-image{

    overflow:hidden;

    border-radius:20px;
}

.service-detail-image img{

    transition:.5s ease;
}

.service-detail:hover .service-detail-image img{

    transform:scale(1.05);
}

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

@media(max-width:991px){

    .service-detail-grid{

        grid-template-columns:1fr;

        gap:40px;
    }

    .service-detail-grid.reverse .service-detail-image,
    .service-detail-grid.reverse .service-detail-content{

        order:unset;
    }

    .service-detail-content h2{

        font-size:36px;
    }

    .process-grid{

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

}

@media(max-width:767px){

    .service-detail{

        padding:70px 0;
    }

    .service-detail-content h2{

        font-size:30px;
    }

    .service-detail-content p{

        font-size:16px;
    }

    .process-grid-pages{

        grid-template-columns:1fr;
    }

    .process-card-pages{

        padding:30px 20px;
    }

}

.services-faq{

    padding:100px 0;

    background:#f8f9fc;
}

.faq-list{

    max-width:100%;

    margin:50px auto 0;
}

.faq-list details{

    background:#ffffff;

    margin-bottom:20px;

    border-radius:15px;

    box-shadow:var(--shadow);

    overflow:hidden;
}

.faq-list summary{

    padding:25px 30px;

    font-size:18px;

    font-weight:600;

    list-style:none;

    position:relative;
}

.faq-list summary::after{

    content:"+";

    position:absolute;

    right:30px;

    font-size:24px;

    color:var(--secondary);
}

.faq-list details[open] summary::after{

    content:"−";
}

.faq-list p{

    padding:0 30px 25px;

    color:#666;

    line-height:1.8;
}

.service-single{

    padding:100px 0;
}

.service-single-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.service-single-image img{

    width:100%;

    border-radius:20px;

    box-shadow:var(--shadow);
}

.service-single-content h2{

    margin:20px 0;

    font-size:48px;
}

.included-section{

    padding:100px 0;

    background:#f8f9fc;
}

.included-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:50px;
}

.included-card{

    background:#fff;

    border-radius:12px;

    padding:25px;

    text-align:center;

    box-shadow:var(--shadow);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

    transition:.3s ease;
}

.included-card i{

    font-size:30px;

    color:var(--secondary);
}

.included-card:hover{

    transform:translateY(-5px);
}

/* ==================================================
   RELATED PROJECTS
================================================== */

.related-projects{

    padding:100px 0;
}

.projects-grid-pages{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;
}

.projects-card{

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;
	
	text-align:center;

    box-shadow:var(--shadow);

    transition:.3s ease;
}

.projects-card:hover{

    transform:translateY(-10px);
}

.projects-card img{

    width:100%;

    height:280px;

    object-fit:cover;
}

.project-content{

    padding:25px;
}

.project-content h3{

    color:var(--primary);

    margin:0;
}

.service-description,
.service-benefits,
.service-stats,
.other-services{
    padding:100px 0;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.other-services-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
}

.benefit-card {
    background:#eeeeee;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:var(--shadow);
}

.other-services-grid a{
    background:#eeeeee;
    color:#000;
	font-weight: 700;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:var(--shadow);
}

.other-services-grid a.active{
    background:var(--secondary);
    color:#fff;
	font-weight: 700;
    border-color:#f28c28;
    pointer-events:none;
    cursor:default;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(242,140,40,.25);
}

.other-services-grid a:hover{
    background:var(--primary);
    color:#fff;
}

.benefit-card i{
    font-size:36px;
    color:var(--secondary);
    margin-bottom:15px;
}

.service-buttons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.service-process{

    padding:100px 0;
}

.process-card{

    background:#eeeeee;

    text-align:center;

    padding:30px;

    border-radius:12px;

    box-shadow:var(--shadow);
}

.process-card span{

    display:inline-flex;

    width:50px;
    height:50px;

    background:var(--secondary);

    color:#fff;

    border-radius:50%;

    align-items:center;
    justify-content:center;

    font-weight:700;

    margin-bottom:15px;
}

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

.gallery-item{
    display:block;
    overflow:hidden;
    border-radius:12px;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

.gallery-empty{
    text-align:center;
    padding:50px;
    background:#fff;
    border-radius:12px;
}

.trust-strip{

    background:#fff;

    padding:40px 0;
}

.trust-grid{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;
}

.trust-grid span{

    font-weight:600;
}

.trust-grid i{

    color:var(--secondary);

    margin-right:8px;
}

.projects-intro{

    padding:100px 0 50px;
}

.project-filters{

    padding-bottom:50px;
}

.filter-buttons{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.filter-buttons button{

    border:none;
    background:#fff;
    padding:12px 24px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    box-shadow:var(--shadow);
}

.filter-buttons button.active{

    background:var(--secondary);
    color:#fff;
}

.projects-section{

    padding-bottom:100px;
}

.project-card-new {
    display: block;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
    transition: .3s;
    text-decoration: none;
}

.project-card-new:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
}

.project-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.project-category{

    position:absolute;
    top:20px;
    left:20px;
    background:var(--secondary);
    color:#fff;
    padding:8px 15px;
    border-radius:50px;
    font-size:13px;
}

.view-project {
    color: #f58220;
    font-weight: 600;
    font-size: 14px;
}

/* ==========================================
   FEATURES GRID
========================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.feature-card {
    background: #eeeeee;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    transition: all .3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.feature-card i {
    font-size: 34px;
    color: #f58220;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    color: #15195A;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

@media(max-width:767px){

    .why-contact-section .features-grid{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    .why-contact-section .feature-card{
        padding:20px 15px;
    }

    .why-contact-section .feature-card h3{
        font-size:16px;
        line-height:1.4;
    }

}

/* ==========================================
   INDUSTRIES SECTION
========================================== */

.industries-section {
    padding: 100px 0;
    background: #f8f9fc;
}

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

.industries-grid div {
    background: #eeeeee;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    font-weight: 600;
    color: #15195A;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    transition: all .3s ease;
}

.industries-grid div:hover {
	background:var(--primary);
	color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.industries-grid i {
    display: block;
    font-size: 32px;
    color: #f58220;
    margin-bottom: 15px;
}

/* ==========================================
   PROJECT SERVICE LINKS
========================================== */

.project-services-links {
    padding: 100px 0;
    background: #ffffff;
}

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

.service-links-grid a {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-decoration: none;
    color: #15195A;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    transition: all .3s ease;
    border-top: 4px solid #f58220;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 140px;
}

.service-links-grid a i {
    font-size: 32px;
    color: #f58220;
    margin-bottom: 15px;
    transition: all .3s ease;
}

.service-links-grid a:hover {
    background: #15195A;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.service-links-grid a:hover i {
    color: #f58220;
    transform: scale(1.1);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

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

}

@media (max-width: 767px) {

    .project-services-links {
        padding: 70px 0;
    }

    .service-links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-links-grid a {
        min-height: 120px;
        padding: 25px 15px;
    }

    .service-links-grid a i {
        font-size: 28px;
    }

}

/* ===========================
   PROJECT SINGLE
=========================== */

.project-single{
    padding:80px 0;
}

.project-single-grid{
    display:block;
}

.project-single-image{
    margin-bottom:40px;
}

.project-single-image img{
    width:100%;
    max-width:1100px;
    display:block;
    margin:0 auto;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.project-single-content{
    max-width:1100px;
    margin:0 auto;
}

.project-single-content h2{
    font-size:42px;
    font-weight:700;
    color:#15195A;
    margin:10px 0 20px;
}

.project-single-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.project-meta-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:35px;
}

.meta-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border-top:4px solid #F58220;
}

.meta-card strong{
    display:block;
    color:#15195A;
    margin-bottom:8px;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.meta-card span{
    color:#666;
    font-size:15px;
}

/* ===========================
   PROJECT STATS
=========================== */

.project-stats{
    padding:40px 0 80px;
}

.project-stats .stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.project-stats .stat-box{
    text-align:center;
}

.project-stats .stat-box h3{
    font-size:42px;
    color:#15195A;
    margin-bottom:10px;
    font-weight:700;
}

.project-stats .stat-box span{
    color:#777;
    font-size:14px;
}

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

.project-navigation{
    padding:60px 0;
}

.project-nav-grid{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.project-nav-grid a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.project-nav-grid a:first-child{
    border:2px solid #15195A;
    color:#15195A;
}

.project-nav-grid a:first-child:hover{
    background:#15195A;
    color:#fff;
}

.project-nav-grid a:last-child{
    background:#F58220;
    color:#fff;
}

.project-nav-grid a:last-child:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(245,130,32,.3);
}

@media(max-width:991px){

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

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

}

@media(max-width:767px){

.project-single{
    padding:60px 0;
}

.project-single-content h2{
    font-size:32px;
}

.project-meta-grid{
    grid-template-columns:1fr;
}

.project-stats .stats-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.project-nav-grid{
    flex-direction:column;
}

.project-nav-grid a{
    width:100%;
    justify-content:center;
}

}

/* ==================================================
   PROJECT SCOPE
================================================== */

.project-scope {
    padding: 80px 0;
    background: #fff;
}

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

.scope-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    border-top: 3px solid #f58220;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    font-weight: 600;
    color: #15195A;
    transition: all .3s ease;
}

.scope-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ==================================================
   OTHER PROJECTS
================================================== */

.other-projects {
    padding: 80px 0;
    background: #f8f9fc;
}

.other-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.other-project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all .3s ease;
}

.other-project-card:hover {
    transform: translateY(-6px);
}

.other-project-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.other-project-content {
    padding: 25px;
}

.other-project-content h3 {
    margin: 0;
    font-size: 22px;
    color: #15195A;
}

.other-project-content span {
    display: inline-block;
    margin-top: 10px;
    color: #f58220;
    font-weight: 600;
}

/* ==================================================
   PROJECT FAQ
================================================== */

.project-faq {
    padding: 80px 0;
    background: #fff;
}

.project-faq .faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.project-faq .faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

.project-faq .faq-question {
    padding: 22px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #15195A;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-faq .faq-question::after {
    content: '+';
    color: #f58220;
    font-size: 22px;
}

.project-faq .faq-item.active .faq-question::after {
    content: '-';
}

.project-faq .faq-answer {
    display: none;
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.8;
}

.project-faq .faq-item.active .faq-answer {
    display: block;
}

/* ==================================================
   IMPROVED FEATURE CARDS
================================================== */

.project-highlights .feature-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.project-highlights .feature-card i {
    color: #f58220;
    font-size: 16px;
}

/* ==================================================
   GALLERY LIGHTBOX HOVER
================================================== */

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '\f00e';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(21,25,90,.75);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    opacity: 0;
    transition: .3s;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:991px){

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

}

@media(max-width:767px){

    .scope-grid,
    .other-projects-grid{
        grid-template-columns: 1fr;
    }

    .scope-card{
        padding:20px;
    }

    .other-project-card img{
        height:220px;
    }

}

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

.feature-card-new{
    background:#eeeeee;
    border-radius:12px;
    padding:25px 15px;
    text-align:center;
    box-shadow:0 3px 15px rgba(0,0,0,.06);
    transition:.3s ease;
}

.feature-card-new:hover{
    transform:translateY(-5px);
}

.feature-card-new i{
    font-size:32px;
    color:#f58220;
    display:block;
    margin-bottom:12px;
}

.feature-card-new span{
    display:block;
    font-weight:600;
    color:#15195A;
    line-height:1.5;
}

.contact-info-section{
padding:80px 0;
}

.contact-info-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.contact-card{
background:#fff;
padding:35px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contact-card i{
font-size:32px;
color:#f58220;
margin-bottom:15px;
}

.contact-card h3{
margin-bottom:10px;
color:#15195A;
}

.contact-card a{
color:#333;
text-decoration:none;
}

.contact-main-section{
padding:80px 0;
}

.contact-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
}

.contact-form-wrapper{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:20px;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea{
width:100%;
padding:15px;
border:1px solid #ddd;
border-radius:10px;
margin-bottom:20px;
}

.contact-side{
display:flex;
flex-direction:column;
gap:30px;
}

.business-hours,
.service-areas{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.business-hours ul{
list-style:none;
padding:0;
margin:0;
}

.business-hours li{
display:flex;
justify-content:space-between;
padding:12px 0;
border-bottom:1px solid #eee;
}

.areas-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
margin-top:15px;
}

.areas-grid span{
background:#f7f7f7;
padding:10px;
border-radius:8px;
text-align:center;
}

.why-contact-section{
padding:80px 0;
background:#f8f9fc;
}

.map-section iframe{
width:100%;
height:500px;
border:0;
display:block;
}

@media(max-width:991px){

.contact-grid,
.contact-info-grid{
grid-template-columns:1fr;
}

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

}

/* =====================================================
   CONTACT EXPERT SECTION
===================================================== */

.contact-expert-section{
    padding:80px 0;
}

.expert-box{
    background:#fff;
    border-radius:20px;
    padding:50px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.expert-content{
    flex:1;
}

.expert-content h2{
    margin:15px 0 20px;
}

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

.expert-services li{
    list-style:none;
    background:#f7f7f7;
    padding:12px 18px;
    border-radius:10px;
    font-weight:600;
    color:#15195A;
}

.expert-contact{
    display:flex;
    flex-direction:column;
    gap:15px;
    min-width:220px;
}

/* =====================================================
   FORM MESSAGE
===================================================== */

#form-message{
    margin-bottom:20px;
}

#form-message.success{
    background:#e8f9ec;
    color:#198754;
    padding:15px;
    border-radius:10px;
    font-weight:600;
}

#form-message.error{
    background:#fdeaea;
    color:#dc3545;
    padding:15px;
    border-radius:10px;
    font-weight:600;
}

/* =====================================================
   WHATSAPP BUTTON
===================================================== */

.btn-whatsapp{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:15px;
    padding:14px 28px;
    background:#25D366;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-whatsapp:hover{
    transform:translateY(-3px);
    color:#fff;
}

.btn-whatsapp i{
    font-size:18px;
}

/* =====================================================
   MAP SECTION
===================================================== */

.map-section{
    padding:80px 0;
}

.map-section .section-header{
    margin-bottom:40px;
}

.map-section iframe{
    width:100%;
    height:500px;
    border:0;
    display:block;
}

/* =====================================================
   CONTACT SEO CONTENT
===================================================== */

.contact-seo-section{
    padding:80px 0;
    background:#fff;
}

.contact-seo-section .section-header{
    text-align:center;
    margin-bottom:25px;
}

.contact-seo-section p{
    max-width:950px;
    margin:0 auto;
    text-align:center;
    line-height:1.9;
    color:#555;
    font-size:16px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

    .expert-box{
        flex-direction:column;
        text-align:center;
        padding:40px 25px;
    }

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

    .expert-contact{
        width:100%;
    }

    .expert-contact a{
        width:100%;
    }

    .map-section iframe{
        height:400px;
    }
}

@media(max-width:767px){

    .contact-expert-section,
    .contact-seo-section,
    .map-section{
        padding:60px 0;
    }

    .map-section iframe{
        height:320px;
    }
}

.faq-projects{
    padding:80px 0;
    background:#fff;
}

.faq-projects .projects-grid-faq{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.faq-projects .project-card-faq{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    text-decoration:none;
}

.faq-projects .project-card-faq:hover{
    transform:translateY(-5px);
}

.faq-projects .project-image img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.faq-projects .project-content{
    padding:20px;
}

.faq-projects .project-content h3{
    color:var(--primary-color);
    margin-bottom:10px;
    font-size:22px;
}

.faq-projects .view-project{
    color:var(--secondary-color);
    font-weight:600;
}

.faq-contact-cta{
    padding:80px 0;
    background:#f8f9fc;
}

.faq-contact-box{
    max-width:900px;
    margin:auto;
    background:#fff;
    border-radius:15px;
    padding:50px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.faq-contact-box h2{
    font-size:42px;
    color:var(--primary-color);
    margin:15px 0;
}

.faq-contact-box p{
    max-width:700px;
    margin:0 auto 30px;
}

.faq-contact-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.faq-contact-buttons a{
    min-width:240px;
}

.gallery-intro{
    padding:100px 0 40px;
}

.gallery-filters{
    padding:0 0 50px;
}

.gallery-section{
    padding:0 0 100px;
}

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

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.gallery-overlay span{
    color:#fff;
    font-size:20px;
    font-weight:600;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-category{
    position:absolute;
    top:15px;
    left:15px;
    background:#f58220;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    z-index:2;
    text-transform:uppercase;
    letter-spacing:.5px;
}

@media(max-width:991px){

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

}

@media(max-width:767px){

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

    .gallery-item img{
        height:260px;
    }

}