* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #1e2933;
    padding-top: 90px;
}

.header.scrolled{
    background: rgba(16,32,46,.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,.18);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

/* Header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #10202e;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: all .3s ease;
}

.navbar {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo-main{
    color:#fff;
    font-size:28px;
    font-weight:700;
    letter-spacing:.3px;
}

.logo-sub{
    color:#d4a017;
    font-size:13px;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navigation a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #d5a63c;
}

.menu-button {
    display: none;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
}

/* Hero */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        url("../images/hero-construction.jpg")
        center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 25, 38, 0.92),
        rgba(10, 25, 38, 0.45)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    color: #ffffff;
}

.hero-label {
    margin-bottom: 20px;
    color: #d5a63c;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 750px;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 1;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    color: #d5a63c;
}

.hero-description {
    max-width: 650px;
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.7;
    color: #e5e7eb;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 35px;
}

.button {
    display: inline-block;
    padding: 16px 26px;
    border: 2px solid transparent;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.button-primary {
    background-color: #d5a63c;
    color: #172531;
}

.button-primary:hover {
    background-color: #ffffff;
}

.button-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.button-outline:hover {
    background-color: #ffffff;
    color: #172531;
}



/* About Section */

.about {
    padding: 110px 0;
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-main-image {
    display: block;
    width: 100%;
    min-height: 570px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    right: -30px;
    bottom: 45px;
    width: 190px;
    padding: 28px;
    background-color: #d5a63c;
    color: #172531;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.about-experience strong {
    display: block;
    font-size: 52px;
    line-height: 1;
}

.about-experience span {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.section-label {
    margin-bottom: 16px;
    color: #d5a63c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    margin-bottom: 25px;
    color: #172531;
    font-size: clamp(36px, 5vw, 55px);
    line-height: 1.1;
}

.about-content > p {
    margin-bottom: 18px;
    color: #5b6570;
    font-size: 17px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 22px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature > span {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #d5a63c;
    color: #172531;
    font-size: 18px;
    font-weight: 700;
}

.about-feature h3 {
    margin-bottom: 7px;
    color: #172531;
    font-size: 18px;
}

.about-feature p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.button-dark {
    background-color: #172531;
    color: #ffffff;
}

.button-dark:hover {
    background-color: #d5a63c;
    color: #172531;
}

/* Services Section */

.services {
    padding: 110px 0;
    background-color: #f4f5f6;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 55px;
}

.section-heading h2 {
    max-width: 750px;
    color: #172531;
    font-size: clamp(36px, 5vw, 55px);
    line-height: 1.1;
}

.section-heading > p {
    color: #66717c;
    font-size: 17px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    min-height: 360px;
    padding: 45px;
    overflow: hidden;
    background-color: #ffffff;
    border-bottom: 4px solid transparent;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #d5a63c;
    box-shadow: 0 20px 45px rgba(23, 37, 49, 0.12);
}

.service-number {
    margin-bottom: 45px;
    color: #d5a63c;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-card h3 {
    max-width: 420px;
    margin-bottom: 20px;
    color: #172531;
    font-size: 28px;
    line-height: 1.25;
}

.service-card p {
    margin-bottom: 30px;
    color: #66717c;
    font-size: 16px;
    line-height: 1.75;
}

.service-card a {
    color: #172531;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.service-card a:hover {
    color: #d5a63c;
}

/* =========================
   WHY CHOOSE US
========================= */

.why-us {
    padding: 110px 0;
    background-color: #172531;
    color: #ffffff;
    overflow: hidden;
}

.why-us-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.why-us-content {
    min-width: 0;
}

.why-us-content h2 {
    max-width: 650px;
    margin-bottom: 28px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.why-us-intro {
    max-width: 620px;
    margin-bottom: 42px;
    color: #cbd2d8;
    font-size: 17px;
    line-height: 1.85;
}

.why-us-list {
    display: grid;
    gap: 24px;
}

.why-us-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-us-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.why-us-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background-color: #d5a63c;
    color: #172531;
    font-size: 14px;
    font-weight: 800;
    border-radius: 3px;
}

.why-us-item h3 {
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.3;
}

.why-us-item p {
    max-width: 560px;
    color: #bfc7ce;
    font-size: 15px;
    line-height: 1.75;
}

/* Right side */

.why-us-side {
    width: 100%;
    min-width: 0;
}

.why-us-image {
    display: block;
    width: 100%;
    height: 490px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

/* Statistics */

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 1px;
    overflow: hidden;
    background-color: #172531;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.statistic-card {
    min-width: 0;
    min-height: 160px;
    padding: 30px;
    background-color: #ffffff;
    color: #172531;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.statistic-card:hover {
    background-color: #f7f3e8;
}

.statistic-card strong {
    display: block;
    margin-bottom: 12px;
    color: #d5a63c;
    font-size: 42px;
    line-height: 1;
}

.statistic-card span {
    display: block;
    width: 100%;
    max-width: none;
    color: #172531;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    overflow-wrap: break-word;
    word-break: normal;
}







/* =========================
   CONTACT SECTION
========================= */

.contact {
    padding: 120px 0;
    background-color: #f4f5f6;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: start;
}

.contact-content h2 {
    max-width: 600px;
    margin-bottom: 28px;
    color: #172531;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.contact-intro {
    max-width: 580px;
    margin-bottom: 42px;
    color: #66717c;
    font-size: 17px;
    line-height: 1.85;
}

.contact-details {
    display: grid;
    gap: 18px;
}

.contact-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #d9dde1;
}

.contact-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: #d5a63c;
    color: #172531;
    font-size: 13px;
    font-weight: 800;
}

.contact-item p {
    margin-bottom: 6px;
    color: #8a939b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item a,
.contact-item div > span {
    color: #172531;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.contact-item a:hover {
    color: #d5a63c;
}

/* Contact form */

.contact-form-wrapper {
    padding: 48px;
    background-color: #ffffff;
    box-shadow: 0 22px 55px rgba(23, 37, 49, 0.12);
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 9px;
}

.form-group label {
    color: #172531;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d9dde1;
    outline: none;
    background-color: #f8f9fa;
    color: #172531;
    font: inherit;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.form-group input,
.form-group select {
    min-height: 54px;
    padding: 0 16px;
}

.form-group textarea {
    min-height: 155px;
    padding: 16px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d5a63c;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(213, 166, 60, 0.12);
}

.contact-submit {
    min-height: 56px;
    border: none;
    background-color: #172531;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    background-color: #d5a63c;
    color: #172531;
}

.form-message {
    min-height: 20px;
    color: #172531;
    font-size: 14px;
    font-weight: 700;
}/* =========================
   CONTACT SECTION
========================= */

.contact {
    padding: 120px 0;
    background-color: #f4f5f6;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: start;
}

.contact-content h2 {
    max-width: 600px;
    margin-bottom: 28px;
    color: #172531;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.contact-intro {
    max-width: 580px;
    margin-bottom: 42px;
    color: #66717c;
    font-size: 17px;
    line-height: 1.85;
}

.contact-details {
    display: grid;
    gap: 18px;
}

.contact-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #d9dde1;
}

.contact-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: #d5a63c;
    color: #172531;
    font-size: 13px;
    font-weight: 800;
}

.contact-item p {
    margin-bottom: 6px;
    color: #8a939b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item a,
.contact-item div > span {
    color: #172531;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.contact-item a:hover {
    color: #d5a63c;
}

/* Contact form */

.contact-form-wrapper {
    padding: 48px;
    background-color: #ffffff;
    box-shadow: 0 22px 55px rgba(23, 37, 49, 0.12);
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 9px;
}

.form-group label {
    color: #172531;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d9dde1;
    outline: none;
    background-color: #f8f9fa;
    color: #172531;
    font: inherit;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.form-group input,
.form-group select {
    min-height: 54px;
    padding: 0 16px;
}

.form-group textarea {
    min-height: 155px;
    padding: 16px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d5a63c;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(213, 166, 60, 0.12);
}

.contact-submit {
    min-height: 56px;
    border: none;
    background-color: #172531;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    background-color: #d5a63c;
    color: #172531;
}

.form-message{
    margin-top:20px;
    font-size:15px;
    font-weight:600;
}

/*=========================
        FOOTER
=========================*/

.footer{

    background:#111b24;
    color:white;
    padding-top:90px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1.2fr 1fr;
    gap:60px;

}

.footer-about{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-logo{
    display:inline-block;
    margin-bottom:26px;
}

.footer-logo img{
    display:block;
    width:auto;
    height:115px;
    object-fit:contain;
}

.footer-about p{
    max-width:420px;
    margin:0;

    color:#b9c2c9;

    font-size:16px;
    line-height:1.9;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:30px;
}

.footer-brand img{
    width:90px;
    height:90px;
    object-fit:contain;
}

.footer-brand-text{
    display:flex;
    flex-direction:column;
}

.footer-brand-text h3{
    margin:0;
    font-size:34px;
    font-weight:800;
    color:#fff;
    line-height:1;
}

.footer-brand-text span{
    margin-top:6px;
    font-size:13px;
    letter-spacing:3px;
    color:#d9a62d;
    font-weight:700;
    text-transform:uppercase;
}

.footer h3{

    margin-bottom:25px;
    font-size:22px;

}

.footer-links{

    display:flex;
    flex-direction:column;
    gap:14px;

}

.footer-links a{

    color:#b9c2c9;
    transition:.3s;

}

.footer-links a:hover{

    color:#d5a63c;
    transform:translateX(5px);

}

.footer-services{

    display:flex;
    flex-direction:column;
    gap:14px;

}

.footer-services p{

    color:#b9c2c9;

}

.footer-contact{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.footer-contact p{

    color:#b9c2c9;

}

.footer-bottom{

    margin-top:70px;
    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom p{

    padding:28px 0;
    color:#9ba4ab;
    text-align:center;

}

/*=========================
      WHATSAPP BUTTON
=========================*/

.whatsapp-float{

    position:fixed;

    right:30px;
    bottom:30px;

    width:64px;
    height:64px;

    background:#25D366;

    border-radius:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

    overflow:hidden;

    text-decoration:none;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transition:all .35s ease;

    z-index:9999;

}

.whatsapp-float img{

    width:32px;
    height:32px;

    min-width:32px;

    display:block;

}

.whatsapp-float span{

    width:0;

    overflow:hidden;

    white-space:nowrap;

    margin-left:0;

    color:white;

    font-size:15px;

    font-weight:700;

    opacity:0;

    transition:all .3s ease;

}

.whatsapp-float:hover{

    width:210px;

    justify-content:flex-start;

    padding:0 18px;

}

.whatsapp-float:hover span{

    width:130px;

    margin-left:14px;

    opacity:1;

}

/*=========================
      FOOTER CONTACT
=========================*/

.footer-contact{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.footer-contact p{

    display:flex;
    align-items:center;
    gap:12px;

    color:#b9c2c9;

    font-size:16px;

}

.footer-contact p a{

    color:#b9c2c9;

    transition:.3s;

}

.footer-contact p a:hover{

    color:#d5a63c;

}

.footer-contact i{

    width:20px;

    color:#d5a63c;

    text-align:center;

}

/*=========================
      SOCIAL
=========================*/

.footer-social{

    margin-top:25px;

}

.footer-social h3{

    margin-bottom:18px;

}

.linkedin-btn{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:12px 22px;

    background:#0A66C2;

    color:white;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.linkedin-btn:hover{

    background:#084d94;

    transform:translateY(-2px);

}

.linkedin-btn i{

    color:white;

    font-size:20px;

}



/* ==========================
   TEAM
========================== */

.team{
    padding:110px 0;
    background:#fff;
}

.team-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
    margin-bottom:60px;
}

.team-heading > div{
    flex:1;
}

.team-heading p:last-child{
    flex:1;
    max-width:520px;
    color:#64748b;
    line-height:1.8;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.team-card{
    background:#f5f5f5;
    overflow:hidden;
    transition:.35s;
}

.team-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.team-image{
    height:380px;
    overflow:hidden;
}

.team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.35s;
}

.team-card:hover img{
    transform:scale(1.05);
}

.team-info{
    padding:28px;
    border-top:4px solid #d4a73a;
}

.team-info h3{
    margin-bottom:8px;
    font-size:28px;
    color:#1f2937;
}

.team-info p{
    color:#64748b;
    margin-bottom:18px;
}

.team-info a{
    color:#d4a73a;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.team-info a:hover{
    color:#1f2937;
}

.team-social{
    margin-top:22px;
}

.team-social a{
    display:inline-flex;
    align-items:center;
    gap:8px;

    color:#1f2937;
    font-size:15px;
    font-weight:600;
    text-decoration:none;

    transition:.25s;
}

.team-social a span:last-child{
    color:#d4a017;
    font-size:18px;
    transition:.25s;
}

.team-social a:hover{
    color:#0A66C2;
}

.team-social a:hover span:last-child{
    transform:translate(3px,-3px);
}
/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .container {
        width: 88%;
    }

    /* Header */

    body {
        padding-top: 72px;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #172531;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .navbar {
        min-height: 72px;
        padding: 0 16px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 250px;
        font-size: 18px;
        line-height: 1.1;
        white-space: nowrap;
    }

    .logo img {
        width: 52px;
        height: 52px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .logo-text h2 {
        font-size: 15px;
        margin: 0;
        line-height: 1.1;
    }

    .logo-text span {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .navigation {
        position: fixed;
        top: 72px;
        left: 0;

        display: none;
        flex-direction: column;
        align-items: flex-start;

        width: 100%;
        padding: 24px 6%;

        background: #172531;
        border-top: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 10px 30px rgba(0,0,0,.25);
    }

    .navigation.active {
        display: flex;
    }

    .navigation a {
        width: 100%;
        padding: 14px 0;
        font-size: 15px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .navigation a:last-child {
        border-bottom: none;
    }

    .menu-button {
        display: block;
        padding: 4px;
        font-size: 28px;
        color: #fff;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    /* Hero */

    .hero {
        min-height: 100svh;
        align-items: center;

        background-position: 62% center;
    }

    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(10, 25, 38, 0.92) 0%,
            rgba(10, 25, 38, 0.73) 55%,
            rgba(10, 25, 38, 0.45) 100%
        );
    }

    .hero-content {
        padding-top: 140px;
        padding-bottom: 70px;
    }

    .hero-label {
        max-width: 270px;
        margin-bottom: 22px;
        font-size: 12px;
        line-height: 1.35;
        letter-spacing: 1.5px;
    }

    .hero h1 {
        max-width: 320px;
        font-size: clamp(40px, 12vw, 54px);
        line-height: 0.98;
        letter-spacing: -1px;
    }

    .hero-description {
        max-width: 320px;
        margin-top: 24px;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-buttons {
        width: 100%;
        margin-top: 30px;
        gap: 12px;
    }

    .hero-buttons .button {
        width: 100%;
        max-width: 320px;
        padding: 15px 18px;
        text-align: center;
    }

    /* About */

    .about {
        padding: 75px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-main-image {
        min-height: 390px;
        height: 390px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-content > p {
        font-size: 16px;
    }

    /* Services */

    .services {
        padding: 75px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .section-heading > p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        padding: 32px 26px;
    }

    .service-number {
        margin-bottom: 25px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    /* Why Us */

    .why-us {
        padding: 75px 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-us-content h2 {
        font-size: 39px;
    }

    .why-us-intro {
        font-size: 16px;
        line-height: 1.75;
    }

    .why-us-item {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 15px;
    }

    .why-us-icon {
        width: 48px;
        height: 48px;
    }

    .why-us-item h3 {
        font-size: 19px;
    }

    .why-us-image {
        height: 330px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .statistic-card {
        min-height: 135px;
        padding: 22px 18px;
    }

    .statistic-card strong {
        font-size: 32px;
    }

    .statistic-card span {
        font-size: 11px;
    }

    /* Contact */

    .contact {
        padding: 75px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-content h2 {
        font-size: 39px;
    }

    .contact-intro {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 28px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */

    .footer {
        padding-top: 65px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-logo {
        font-size: 27px;
    }

    .footer-bottom {
        margin-top: 50px;
    }

    /* WhatsApp */

    .whatsapp-float {
        right: 18px;
        bottom: 18px;

        width: 58px;
        height: 58px;
    }

    .whatsapp-float img {
        width: 29px;
        height: 29px;
    }

    .whatsapp-float:hover {
        width: 58px;
        padding: 0;
        justify-content: center;
        transform: none;
    }

    .whatsapp-float:hover span {
        width: 0;
        margin-left: 0;
        opacity: 0;
    }

    .team {
    padding: 75px 0;
}

.team-grid{
        grid-template-columns:1fr;
    }

.team-image {
    height: 380px;
}

/* MOBILE NAVBAR */

.navbar{
    min-height:68px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    max-width:250px;
}

.logo img{
    height:52px;
    width:auto;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo-main{
    font-size:19px;
    font-weight:700;
    white-space:nowrap;
}

.logo-sub{
    margin-top:4px;
    font-size:10px;
    letter-spacing:1px;
    white-space:nowrap;
}

.menu-button{
    display:flex;
    align-items:center;
    justify-content:center;

    width:42px;
    height:42px;

    margin-left:auto;
    padding:0;

    font-size:27px;

    flex-shrink:0;
}

 .team{
        padding:80px 0;
    }

    .team-heading{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
        margin-bottom:40px;
    }

    .team-heading > div,
    .team-heading > p{
        width:100%;
        max-width:100%;
    }

    .team-heading h2{
        font-size:42px;
        line-height:1.1;
        margin-bottom:0;
    }

    .team-heading p{
        font-size:16px;
        line-height:1.8;
        margin:0;
    }

    .team-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:30px;
    }

    .team-card{
        width:100%;
    }

    .team-image{
        height:360px;
        overflow:hidden;
    }

    .team-image img{
        width:100%;
        height:100%;
        object-fit:cover;
        display:block;
    }

    .team-info{
        padding:24px;
    }

    .team-info h3{
        font-size:22px;
        margin-bottom:8px;
    }

    .team-info p{
        font-size:16px;
        margin-bottom:18px;
    }

    .team-social{
        margin-top:8px;
    }

    .team-social a{
        font-size:14px;
    }

      .footer-brand{
        justify-content:center;
        text-align:left;
        gap:15px;
    }

    .footer-brand img{
        width:70px;
        height:70px;
    }

    .footer-brand-text h3{
        font-size:24px;
    }

    .footer-brand-text span{
        font-size:10px;
        letter-spacing:2px;
    }

}