/* ============================================================
   GLOBAL MOTHERLAND LIMITED — DESIGN V5
   Clean Modern / Split Hero / Light Theme
   Primary: #d7f0cc (soft mint green)
   Supporting: Deep Navy #0B2A5B | Green #2E8B20 | Red #D62828
   ============================================================ */

:root {
    --mint: #d7f0cc;
    --mint-dark: #b8e3a6;
    --mint-light: #eef9e8;
    --navy: #0B2A5B;
    --navy-dark: #071C3D;
    --green: #2E8B20;
    --green-light: #3FA82F;
    --red: #D62828;
    --white: #FFFFFF;
    --gray: #666666;
    --gray-light: #F7F9FB;
    --gray-border: #E8ECF1;
    --shadow: 0 12px 35px rgba(11, 42, 91, 0.08);
    --shadow-lg: 0 25px 60px rgba(11, 42, 91, 0.14);
    --radius: 16px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Manrope', sans-serif;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 110px 0;
}

.highlight {
    color: var(--green);
}

.section-tag {
    display: inline-block;
    color: var(--green);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--green);
    transform: translateY(-50%);
}

.section-tag.center {
    padding-left: 0;
    padding-right: 40px;
}

.section-tag.center::before {
    left: auto;
    right: 0;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray);
}

/* ======================= BUTTONS ======================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(11, 42, 91, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(11, 42, 91, 0.35);
    background: var(--navy-dark);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-border);
}

.btn-outline-dark:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 12px 26px;
    font-size: 0.88rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ======================= NAVBAR ======================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy);
}

.brand-name em {
    font-style: normal;
    color: var(--green);
}

.brand-sub {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(11, 42, 91, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(11, 42, 91, 0.3);
    color: var(--white) !important;
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ======================= HERO (SPLIT LAYOUT) ======================= */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--mint-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: var(--mint);
    border-radius: 50%;
    opacity: 0.5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mint);
    color: var(--green);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero h1 .highlight {
    color: var(--green);
    position: relative;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-border);
}

.hstat {
    display: flex;
    flex-direction: column;
}

.hstat-value {
    display: flex;
    align-items: baseline;
}

.hstat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.hstat-plus {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green);
    margin-left: 2px;
}

.hstat-label {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 6px;
}

.hero-visual {
    position: relative;
}

.hero-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(11, 42, 91, 0.3));
    z-index: 1;
}

.hero-img-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.hero-badge i {
    font-size: 1.8rem;
    color: var(--green);
}

.hero-badge strong {
    display: block;
    color: var(--navy);
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
}

.hero-badge span {
    font-size: 0.78rem;
    color: var(--gray);
}

.hero-float {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 22px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
}

.hero-float i {
    font-size: 1.6rem;
    color: var(--mint);
}

.hero-float strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
}

.hero-float span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ======================= ABOUT ======================= */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-frame:hover img {
    transform: scale(1.05);
}

.about-exp {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--mint);
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-num {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.exp-label {
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
    line-height: 1.3;
}

.about-content .about-lead {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 32px;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--navy);
    font-weight: 500;
}

.point i {
    color: var(--green);
    font-size: 1.1rem;
}

/* ======================= VISION / MISSION ======================= */
.vm {
    background: var(--gray-light);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vm-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    border-top: 4px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--green);
}

.vm-card.featured {
    border-top-color: var(--green);
    background: var(--navy);
}

.vm-card.featured h3,
.vm-card.featured p {
    color: var(--white);
}

.vm-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.vm-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: var(--mint);
    color: var(--green);
    margin-bottom: 24px;
}

.vm-card.featured .vm-icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--mint);
}

.vm-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.vm-card p {
    font-size: 0.95rem;
}

/* ======================= SERVICES ======================= */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.service-card {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: var(--white);
    border-color: var(--gray-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    background: var(--mint);
    color: var(--green);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--navy);
    color: var(--mint);
    transform: rotate(-6deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--navy);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ======================= PROJECTS ======================= */
.projects {
    background: var(--gray-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-border);
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
    background: var(--mint-light);
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.project-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.project-body p {
    font-size: 0.9rem;
    margin: 0 0 20px;
    flex-grow: 1;
}

.project-meta {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--gray-border);
}

.project-value {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    background: var(--mint);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
}

/* ======================= REPUTATION ======================= */
.reputation {
    background: var(--white);
}

.reputation-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.reputation-content p {
    margin-bottom: 20px;
}

.reputation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.rstat {
    background: var(--mint-light);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    border-left: 4px solid var(--green);
}

.rstat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
}

.rstat-plus {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green);
}

.rstat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 6px;
}

.reputation-visual {
    display: grid;
    gap: 20px;
}

.rep-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--gray-light);
    border-radius: 14px;
    padding: 26px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.rep-card:hover {
    border-color: var(--green);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(8px);
}

.rep-card i {
    font-size: 1.8rem;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 4px;
}

.rep-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.rep-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* ======================= CTA ======================= */
.cta {
    background: var(--navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--mint);
    border-radius: 50%;
    opacity: 0.1;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

.cta h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta h2 .highlight {
    color: var(--mint);
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

/* ======================= CONTACT ======================= */
.contact {
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 1.6rem;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 0.92rem;
    margin: 0;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--green);
    transform: translateY(-4px);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-border);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--gray-light);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(46, 139, 32, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--mint-light);
    color: var(--green);
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.92rem;
    text-align: center;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================= FOOTER ======================= */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand .brand-sub {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
    margin: 20px 0;
    font-size: 0.92rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--green);
    transform: translateY(-4px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--green);
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--mint);
    padding-left: 5px;
}

.footer-col p {
    font-size: 0.92rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-col p i {
    color: var(--green);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom i {
    color: var(--red);
}

/* ======================= BACK TO TOP ======================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(11, 42, 91, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--green);
}

/* ======================= REVEAL ANIMATION ======================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .reputation-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: var(--navy);
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 130px 0 80px;
    }

    .hero-stats {
        gap: 24px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .reputation-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .reputation-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-float {
        top: -15px;
        right: 10px;
        padding: 12px 16px;
    }

    .hero-img-wrap img {
        height: 400px;
    }

    .about-exp {
        bottom: -15px;
        right: 10px;
        padding: 18px 22px;
    }

    .about-img-frame img {
        height: 380px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 28px 20px;
    }
}