/* =========================================================
   FASHION SQUARE PVT. LIMITED
   Main Color: #C25B2A
   Background: #FFFFFF
   ========================================================= */

:root {

    --terracotta: #C25B2A;
    --terracotta-dark: #91421D;
    --terracotta-light: #E8A17F;
    --terracotta-soft: #FAF0EB;

    --white: #FFFFFF;

    --text: #292321;
    --muted: #746A66;
    --border: #E8DED9;

    --dark: #241C19;

    --shadow:
        0 20px 60px rgba(45, 28, 21, 0.10);

    --container: 1180px;

    --radius: 22px;
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "DM Sans", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;
}


img {

    display: block;

    width: 100%;

    object-fit: cover;
}


a {

    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {

    font-family: inherit;
}


/* CONTAINER */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;
}


/* =========================================================
   ANIMATED BACKGROUND
   ========================================================= */

.background-animation {

    position: fixed;

    inset: 0;

    pointer-events: none;

    overflow: hidden;

    z-index: -1;

    opacity: .45;
}


.background-animation span {

    position: absolute;

    width: 220px;

    height: 220px;

    border: 1px solid rgba(194, 91, 42, .15);

    border-radius: 50%;

    animation: floating 18s infinite ease-in-out;
}


.background-animation span:nth-child(1) {

    left: 5%;

    top: 10%;

    animation-delay: 0s;
}


.background-animation span:nth-child(2) {

    right: 8%;

    top: 18%;

    width: 140px;

    height: 140px;

    animation-delay: -4s;
}


.background-animation span:nth-child(3) {

    left: 35%;

    bottom: 10%;

    width: 300px;

    height: 300px;

    animation-delay: -8s;
}


.background-animation span:nth-child(4) {

    right: 20%;

    bottom: 5%;

    width: 100px;

    height: 100px;

    animation-delay: -12s;
}


.background-animation span:nth-child(5) {

    left: 55%;

    top: 35%;

    width: 70px;

    height: 70px;

    background: rgba(194, 91, 42, .04);

    animation-delay: -16s;
}


@keyframes floating {

    0%,
    100% {

        transform:
            translate3d(0, 0, 0)
            rotate(0deg);

    }

    50% {

        transform:
            translate3d(35px, -45px, 0)
            rotate(25deg);

    }

}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, .90);

    backdrop-filter: blur(16px);

    border-bottom:
        1px solid rgba(194, 91, 42, .10);
}


.nav-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;
}


.logo-box {

    width: 100px;

    height: 100px;

    display: grid;

    place-items: center;



    font-weight: 700;

    letter-spacing: -1px;

    transform: rotate(-4deg);
}


.logo span:last-child {

    display: flex;

    flex-direction: column;

    line-height: 1;
}


.logo strong {

    font-size: 16px;

    letter-spacing: 1px;
}


.logo small {



    font-size: 10px;

    letter-spacing: 4px;

    margin-top: 4px;
}


/* NAVIGATION */

nav {

    display: flex;

    align-items: center;

    gap: 30px;
}


nav a {

    font-size: 14px;

    font-weight: 600;

    position: relative;

    padding: 8px 0;

    color: var(--muted);

    transition: .3s ease;
}


nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--terracotta);

    transition: .3s ease;
}


nav a:hover,
nav a.active {

    color: var(--terracotta);
}


nav a:hover::after,
nav a.active::after {

    width: 100%;
}


.menu-toggle {

    display: none;

    background: none;

    border: 0;

    font-size: 28px;

    color: var(--terracotta);

    cursor: pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    min-height: 760px;

    display: flex;

    align-items: center;

    padding: 90px 0;
}


.hero-grid {

    display: grid;

    grid-template-columns:
        1fr
        .9fr;

    gap: 80px;

    align-items: center;
}


.eyebrow {

    display: inline-block;

    color: var(--terracotta);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 18px;
}


.hero h1 {

    font-family: "Playfair Display", serif;

    font-size:
        clamp(50px, 7vw, 88px);

    line-height: 1.02;

    letter-spacing: -3px;

    margin-bottom: 28px;
}


.hero h1 span,
.section-heading h2 span,
.page-hero h1 span,
.pakistan-content h2 span,
.vision-content h2 span,
.form-heading h2 span,
.cta-content h2 span {

    color: var(--terracotta);

    display: block;
}


.hero-content > p {

    max-width: 610px;

    color: var(--muted);

    font-size: 17px;

    margin-bottom: 35px;
}


/* BUTTONS */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 45px;
}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 100px;

    font-size: 14px;

    font-weight: 700;

    border: 1px solid transparent;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 14px 30px rgba(194, 91, 42, .18);
}


.btn-primary {

    background: var(--terracotta);

    color: var(--white);
}


.btn-outline {

    color: var(--terracotta);

    border-color: var(--terracotta);

    background: var(--white);
}


.btn-white {

    background: var(--white);

    color: var(--terracotta);
}


/* HERO MINI */

.hero-mini-info {

    display: flex;

    flex-wrap: wrap;

    gap: 35px;
}


.hero-mini-info div {

    display: flex;

    flex-direction: column;

    border-left: 2px solid var(--terracotta);

    padding-left: 12px;
}


.hero-mini-info strong {

    font-family: "Playfair Display", serif;

    font-size: 22px;

    color: var(--terracotta);
}


.hero-mini-info span {

    font-size: 12px;

    color: var(--muted);
}


/* HERO IMAGE */

.hero-image-wrap {

    position: relative;

    padding: 25px;
}


.image-frame {

    position: relative;

    overflow: hidden;

    height: 590px;

    border-radius: 160px 160px 25px 25px;

    box-shadow: var(--shadow);

    border: 10px solid var(--white);
}


.image-frame::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(0, 0, 0, .55)
        );
}


.image-frame img {

    height: 100%;

    transition: transform .8s ease;
}


.image-frame:hover img {

    transform: scale(1.05);
}


.image-label {

    position: absolute;

    z-index: 2;

    bottom: 25px;

    left: 30px;

    color: var(--white);

    display: flex;

    flex-direction: column;
}


.image-label span {

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;
}


.image-label small {

    font-size: 10px;

    letter-spacing: 2px;

    opacity: .85;
}


.floating-card {

    position: absolute;

    padding: 16px 20px;

    background: var(--white);

    box-shadow: var(--shadow);

    display: flex;

    flex-direction: column;

    line-height: 1.2;

    z-index: 5;
}


.floating-one {

    left: -5px;

    top: 100px;

    transform: rotate(-5deg);
}


.floating-two {

    right: -5px;

    bottom: 100px;

    transform: rotate(5deg);
}


.floating-card strong {

    color: var(--terracotta);

    font-size: 14px;
}


.floating-card span {

    font-size: 10px;

    color: var(--muted);

    letter-spacing: 2px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {

    padding: 110px 0;
}


.section-heading {

    max-width: 700px;

    margin-bottom: 60px;
}


.section-heading.center {

    text-align: center;

    margin-left: auto;

    margin-right: auto;
}


.section-heading h2 {

    font-family: "Playfair Display", serif;

    font-size:
        clamp(38px, 5vw, 60px);

    line-height: 1.08;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}


.section-heading p {

    color: var(--muted);

    font-size: 16px;
}


/* FEATURE CARDS */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.feature-card {

    position: relative;

    padding: 20px;

    border:
        1px solid var(--border);

    background: var(--white);

    transition: .35s ease;
}


.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow);

    border-color:
        rgba(194, 91, 42, .35);
}


.card-number {

    position: absolute;

    top: 32px;

    right: 30px;

    color: var(--terracotta);

    font-weight: 700;

    font-size: 13px;

    z-index: 2;
}


.feature-image {

    height: 290px;

    overflow: hidden;

    margin-bottom: 25px;
}


.feature-image img {

    height: 100%;

    transition: transform .5s ease;
}


.feature-card:hover
.feature-image img {

    transform: scale(1.06);
}


.feature-card h3 {

    font-family: "Playfair Display", serif;

    font-size: 27px;

    margin-bottom: 10px;
}


.feature-card p {

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 20px;
}


.feature-card a,
.text-link {

    color: var(--terracotta);

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   PAKISTAN SECTION
   ========================================================= */

.pakistan-section {

    padding: 110px 0;

    background:
        linear-gradient(
            120deg,
            var(--terracotta-soft),
            var(--white)
        );
}


.pakistan-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 90px;

    align-items: center;
}


.pakistan-image {

    position: relative;
}


.pakistan-image img {

    height: 570px;

    border-radius: 20px;
}


.location-badge {

    position: absolute;

    right: -30px;

    bottom: 40px;

    background: var(--terracotta);

    color: var(--white);

    padding: 22px 28px;

    display: flex;

    flex-direction: column;

    box-shadow: var(--shadow);
}


.location-badge span {

    font-size: 9px;

    letter-spacing: 2px;
}


.location-badge strong {

    font-family: "Playfair Display", serif;

    font-size: 27px;
}


.location-badge small {

    font-size: 9px;

    letter-spacing: 3px;
}


.pakistan-content h2 {

    font-family: "Playfair Display", serif;

    font-size:
        clamp(40px, 5vw, 60px);

    line-height: 1.1;

    margin-bottom: 25px;
}


.pakistan-content p {

    color: var(--muted);

    margin-bottom: 20px;
}


/* =========================================================
   STATS
   ========================================================= */

.stats-section {

    padding: 45px 0;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.stat {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    border-left: 2px solid var(--terracotta);
}


.stat strong {

    font-family: "Playfair Display", serif;

    font-size: 34px;

    color: var(--terracotta);
}


.stat span {

    color: var(--muted);

    font-size: 13px;

    font-weight: 600;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {

    padding: 110px 0;

    background: var(--terracotta);

    color: var(--white);

    text-align: center;

    position: relative;

    overflow: hidden;
}


.cta-section::before,
.cta-section::after {

    content: "";

    position: absolute;

    border: 1px solid rgba(255,255,255,.20);

    border-radius: 50%;

    animation: pulseCircle 8s infinite ease-in-out;
}


.cta-section::before {

    width: 500px;

    height: 500px;

    left: -180px;

    top: -250px;
}


.cta-section::after {

    width: 350px;

    height: 350px;

    right: -100px;

    bottom: -200px;

    animation-delay: -4s;
}


@keyframes pulseCircle {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.12);

    }

}


.cta-content {

    position: relative;

    z-index: 2;
}


.cta-content .eyebrow {

    color: var(--white);
}


.cta-content h2 {

    font-family: "Playfair Display", serif;

    font-size:
        clamp(40px, 6vw, 70px);

    line-height: 1.05;

    margin-bottom: 25px;
}


.cta-content h2 span {

    color: var(--white);

    opacity: .75;
}


.cta-content p {

    max-width: 550px;

    margin: 0 auto 30px;

    opacity: .9;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {

    padding: 130px 0 110px;

    background:
        linear-gradient(
            135deg,
            var(--terracotta-soft),
            var(--white)
        );
}


.page-hero h1 {

    max-width: 850px;

    font-family: "Playfair Display", serif;

    font-size:
        clamp(48px, 7vw, 82px);

    line-height: 1.03;

    letter-spacing: -2px;

    margin-bottom: 25px;
}


.page-hero p {

    max-width: 650px;

    color: var(--muted);

    font-size: 17px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.two-column {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;
}


.about-image {

    position: relative;
}


.about-image img {

    height: 600px;

    border-radius: 15px;
}


.vertical-label {

    position: absolute;

    top: 30px;

    left: -15px;

    background: var(--terracotta);

    color: white;

    padding: 15px;

    writing-mode: vertical-rl;

    letter-spacing: 3px;

    font-size: 11px;
}


.soft-section {

    background: var(--terracotta-soft);
}


.values-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.value-card {

    background: var(--white);

    padding: 35px;

    border-top: 3px solid var(--terracotta);

    transition: .3s ease;
}


.value-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);
}


.value-card > span {

    color: var(--terracotta);

    font-weight: 700;

    font-size: 13px;
}


.value-card h3 {

    font-family: "Playfair Display", serif;

    font-size: 26px;

    margin: 20px 0 10px;
}


.value-card p {

    color: var(--muted);

    font-size: 14px;
}


/* DARK SECTION */

.dark-section {

    padding: 110px 0;

    background: var(--dark);

    color: var(--white);
}


.vision-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;
}


.vision-content h2 {

    font-family: "Playfair Display", serif;

    font-size:
        clamp(40px, 5vw, 60px);

    line-height: 1.08;

    margin-bottom: 25px;
}


.vision-content p {

    color: rgba(255,255,255,.72);

    margin-bottom: 20px;
}


.vision-image img {

    height: 520px;

    border-radius: 20px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.service-card {

    position: relative;

    border: 1px solid var(--border);

    padding: 38px;

    background: var(--white);

    transition: .35s ease;
}


.service-card:hover {

    transform: translateY(-8px);

    border-color: var(--terracotta);

    box-shadow: var(--shadow);
}


.service-number {

    position: absolute;

    right: 25px;

    top: 25px;

    color: var(--terracotta);

    font-weight: 700;
}


.service-icon {

    width: 55px;

    height: 55px;

    display: grid;

    place-items: center;

    background: var(--terracotta-soft);

    color: var(--terracotta);

    font-size: 25px;

    margin-bottom: 25px;
}


.service-card h3 {

    font-family: "Playfair Display", serif;

    font-size: 28px;

    margin-bottom: 12px;
}


.service-card p {

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 20px;
}


.service-card ul {

    list-style: none;
}


.service-card li {

    color: var(--text);

    font-size: 13px;

    padding: 6px 0;

    border-top: 1px solid var(--border);
}


.service-card li::before {

    content: "→";

    color: var(--terracotta);

    margin-right: 8px;
}


/* IMAGE STRIP */

.image-strip {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 0;
}


.image-strip-item {

    height: 420px;

    overflow: hidden;
}


.image-strip-item img {

    height: 100%;

    transition: .6s ease;
}


.image-strip-item:hover img {

    transform: scale(1.06);
}


/* PROCESS */

.process-section {

    padding: 110px 0;
}


.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


.process-step {

    padding: 30px;

    border-left: 2px solid var(--terracotta);
}


.process-step strong {

    color: var(--terracotta);

    font-size: 13px;
}


.process-step h3 {

    font-family: "Playfair Display", serif;

    font-size: 26px;

    margin: 15px 0 8px;
}


.process-step p {

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   TEAM
   ========================================================= */

.team-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}


.team-card {

    background: var(--white);

    border: 1px solid var(--border);

    transition: .35s ease;
}


.team-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: var(--terracotta);
}


.team-image {

    height: 450px;

    position: relative;

    overflow: hidden;
}


.team-image img {

    height: 100%;

    transition: transform .6s ease;
}


.team-card:hover .team-image img {

    transform: scale(1.05);
}


.team-role {

    position: absolute;

    left: 20px;

    bottom: 20px;

    padding: 9px 13px;

    background: var(--terracotta);

    color: var(--white);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.team-info {

    padding: 30px;

    position: relative;
}


.team-index {

    color: var(--terracotta);

    font-size: 11px;

    font-weight: 700;
}


.team-info h3 {

    font-family: "Playfair Display", serif;

    font-size: 30px;

    margin-top: 8px;
}


.position {

    color: var(--terracotta);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.team-info > p:last-child {

    color: var(--muted);

    font-size: 14px;
}


/* TEAM PHILOSOPHY */

.team-philosophy {

    padding: 110px 0;

    background: var(--terracotta-soft);
}


.philosophy-grid {

    display: grid;

    grid-template-columns:
        .9fr
        1fr;

    gap: 80px;

    align-items: center;
}


.philosophy-image img {

    height: 570px;

    border-radius: 20px;
}


.philosophy-content h2 {

    font-family: "Playfair Display", serif;

    font-size:
        clamp(40px, 5vw, 60px);

    line-height: 1.08;

    margin-bottom: 20px;
}


.philosophy-content h2 span {

    display: block;

    color: var(--terracotta);
}


.philosophy-content > p {

    color: var(--muted);

    margin-bottom: 30px;
}


.philosophy-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}


.philosophy-list div {

    padding: 18px;

    background: var(--white);

    display: flex;

    gap: 12px;

    align-items: center;
}


.philosophy-list strong {

    color: var(--terracotta);
}


.philosophy-list span {

    font-size: 13px;

    font-weight: 600;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 90px;

    align-items: start;
}


.contact-information h2,
.form-heading h2 {

    font-family: "Playfair Display", serif;

    font-size:
        clamp(40px, 5vw, 58px);

    line-height: 1.1;

    margin-bottom: 20px;
}


.contact-information h2 span {

    display: block;

    color: var(--terracotta);
}


.contact-information > p {

    color: var(--muted);

    margin-bottom: 35px;
}


.contact-item {

    display: flex;

    gap: 16px;

    margin-bottom: 25px;
}


.contact-icon {

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    background: var(--terracotta-soft);

    color: var(--terracotta);

    flex-shrink: 0;

    font-weight: 700;
}


.contact-item small {

    display: block;

    color: var(--terracotta);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.contact-item p,
.contact-item a {

    color: var(--text);

    font-size: 14px;

    display: block;
}


.contact-image {

    position: relative;

    margin-top: 40px;
}


.contact-image img {

    height: 250px;

    border-radius: 15px;
}


.contact-image > div {

    position: absolute;

    left: 20px;

    bottom: 20px;

    color: var(--white);

    display: flex;

    flex-direction: column;
}


.contact-image strong {

    font-family: "Playfair Display", serif;

    font-size: 25px;
}


.contact-image span {

    font-size: 9px;

    letter-spacing: 3px;
}


/* FORM */

.contact-form-wrap {

    padding: 45px;

    background: var(--white);

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}


.form-heading {

    margin-bottom: 35px;
}


.form-heading h2 span {

    display: inline;
}


.form-row {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 20px;
}


.form-group {

    margin-bottom: 20px;
}


.form-group label {

    display: block;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 8px;
}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border: 1px solid var(--border);

    background: #fff;

    padding: 14px 15px;

    outline: none;

    font-size: 14px;

    color: var(--text);

    transition: .3s ease;
}


.form-group textarea {

    resize: vertical;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--terracotta);

    box-shadow:
        0 0 0 3px rgba(194,91,42,.08);
}


.full-btn {

    width: 100%;

    border: 0;

    cursor: pointer;
}


.form-note {

    font-size: 11px;

    color: var(--muted);

    margin-top: 15px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {

    background: var(--dark);

    color: var(--white);

    padding-top: 75px;
}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        .7fr
        1fr;

    gap: 70px;

    padding-bottom: 60px;
}


.footer-logo {

    font-family: "Playfair Display", serif;

    font-size: 26px;

    display: inline-block;

    margin-bottom: 15px;
}


.footer-grid p {

    color: rgba(255,255,255,.60);

    font-size: 13px;

    max-width: 350px;
}


.footer-grid h4 {

    color: var(--terracotta-light);

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 20px;
}


.footer-grid a:not(.footer-logo) {

    display: block;

    color: rgba(255,255,255,.70);

    font-size: 13px;

    margin-bottom: 8px;

    transition: .3s ease;
}


.footer-grid a:hover {

    color: var(--terracotta-light);
}


.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.10);

    padding: 20px 0;
}


.footer-bottom .container {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255,255,255,.45);

    font-size: 11px;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .hero-grid,
    .two-column,
    .pakistan-grid,
    .vision-grid,
    .philosophy-grid,
    .contact-grid {

        grid-template-columns: 1fr;

    }


    .hero {

        padding: 70px 0;
    }


    .hero-grid {

        gap: 60px;
    }


    .feature-grid,
    .services-grid,
    .team-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .values-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

    }

}


@media (max-width: 700px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    .nav-container {

        min-height: 70px;
    }


    .menu-toggle {

        display: block;
    }


    nav {

        position: absolute;

        top: 70px;

        left: 14px;

        right: 14px;

        background: var(--white);

        border:
            1px solid var(--border);

        box-shadow: var(--shadow);

        padding: 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;
    }


    nav.show {

        display: flex;
    }


    nav a {

        padding: 12px;
    }


    .hero {

        min-height: auto;

        padding: 65px 0;
    }


    .hero h1 {

        letter-spacing: -2px;
    }


    .hero-mini-info {

        gap: 15px;

        flex-direction: column;
    }


    .hero-image-wrap {

        padding: 10px;
    }


    .image-frame {

        height: 500px;

        border-radius:
            120px 120px 20px 20px;
    }


    .floating-one {

        left: -5px;

        top: 60px;
    }


    .floating-two {

        right: -5px;

        bottom: 60px;
    }


    .section,
    .pakistan-section,
    .dark-section,
    .team-philosophy,
    .process-section {

        padding: 75px 0;
    }


    .feature-grid,
    .services-grid,
    .team-grid,
    .values-grid,
    .process-grid,
    .stats-grid {

        grid-template-columns: 1fr;

    }


    .pakistan-image img,
    .about-image img,
    .vision-image img,
    .philosophy-image img {

        height: 430px;
    }


    .location-badge {

        right: 15px;

        bottom: 20px;
    }


    .image-strip {

        grid-template-columns: 1fr;
    }


    .image-strip-item {

        height: 350px;
    }


    .contact-form-wrap {

        padding: 25px;
    }


    .form-row {

        grid-template-columns: 1fr;
    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-bottom .container {

        flex-direction: column;
    }


    .page-hero {

        padding: 90px 0 75px;
    }


    .team-image {

        height: 420px;
    }

}