/* =========================================
   Gulfam Cotton Shop
   Header Styles
========================================= */

/* ---------- Theme ---------- */

:root {
    --primary: #182A73;
    --secondary: #D62839;
    --accent: #E8B44F;

    --white: #FFFFFF;
    --cream: #FFF9F0;
    --text: #202124;
    --muted: #6B7280;

    --border: rgba(24, 42, 115, 0.10);

    --container-width: 1200px;
    --header-height: 82px;

    --transition: 0.25s ease;
}


/* ---------- Reset ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    color: var(--text);
    background: var(--cream);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* ---------- Container ---------- */

.container {
    width: min(100% - 40px, var(--container-width));
    margin-inline: auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    height: var(--header-height);

    background: rgba(255, 249, 240, 0.96);
    border-bottom: 1px solid var(--border);

    transition:
        box-shadow var(--transition),
        background var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(24, 42, 115, 0.08);
}


/* ---------- Header Inner ---------- */

.header-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================
   BRAND
========================================= */

.brand {
    display: inline-flex;
    flex-direction: column;

    flex-shrink: 0;

    line-height: 1;
}

.brand-name {
    color: var(--primary);

    font-size: 27px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.brand-subtitle {
    margin-top: 5px;

    color: var(--secondary);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    align-items: center;

    gap: 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.nav-link {
    position: relative;

    display: inline-block;

    padding: 8px 0;

    color: var(--text);

    font-size: 15px;
    font-weight: 600;

    transition: color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--secondary);

    transition: width var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: var(--secondary);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    width: 100%;
}


/* =========================================
   HEADER ACTIONS
========================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.header-call,
.header-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 16px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.header-call {
    gap: 8px;

    color: var(--primary);

    border: 1px solid var(--primary);
    background: transparent;
}

.header-call svg {
    width: 17px;
    height: 17px;

    fill: currentColor;
}

.header-call:hover {
    color: var(--white);
    background: var(--primary);

    transform: translateY(-1px);
}

.header-whatsapp {
    color: var(--white);
    background: var(--secondary);
}

.header-whatsapp:hover {
    background: #b91f30;

    transform: translateY(-1px);
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: var(--white);

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: var(--primary);

    border-radius: 10px;

    transition:
        transform var(--transition),
        opacity var(--transition);
}


/* =========================================
   ACCESSIBILITY
========================================= */

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(232, 180, 79, 0.55);
    outline-offset: 3px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .nav-list {
        gap: 18px;
    }

    .nav-link {
        font-size: 14px;
    }

    .header-call span {
        display: none;
    }

    .header-call {
        width: 42px;
        padding: 0;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 820px) {

    :root {
        --header-height: 72px;
    }

    .container {
        width: min(100% - 30px, var(--container-width));
    }

    .header-inner {
        gap: 15px;
    }

    .brand-name {
        font-size: 23px;
    }

    .brand-subtitle {
        font-size: 9px;
        letter-spacing: 1.8px;
    }


    /* Hide desktop navigation initially */

    .main-nav {
        position: absolute;

        top: var(--header-height);
        left: 0;
        right: 0;

        margin: 0;

        padding: 12px 15px 20px;

        background: var(--white);

        border-bottom: 1px solid var(--border);

        box-shadow: 0 15px 30px rgba(24, 42, 115, 0.08);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid rgba(24, 42, 115, 0.07);
    }

    .nav-list li:last-child {
        border-bottom: 0;
    }

    .nav-link {
        display: block;

        padding: 14px 5px;

        font-size: 15px;
    }

    .nav-link::after {
        display: none;
    }


    /* Header actions */

    .header-actions {
        margin-left: auto;
    }

    .header-whatsapp {
        display: none;
    }

    .header-call {
        display: inline-flex;
        width: 42px;
        height: 42px;

        padding: 0;
    }


    /* Hamburger */

    .menu-toggle {
        display: flex;
    }


    /* Hamburger animation */

    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .container {
        width: min(100% - 24px, var(--container-width));
    }

    .brand-name {
        font-size: 21px;
    }

    .brand-subtitle {
        font-size: 8px;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}

/* =========================================
   BRAND LOGO
========================================= */

.brand {
    display: inline-flex;
    align-items: center;

    width: 190px;
    height: 68px;

    flex-shrink: 0;
}

.brand img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
}

@media (max-width: 820px) {

    :root {
        --header-height: 72px;
    }

    .brand {
        width: 155px;
        height: 58px;
    }

}

@media (max-width: 420px) {

    .brand {
        width: 140px;
        height: 54px;
    }

}

 /* =========================================
    HERO SECTION
 ========================================== */

 .hero-section {
     position: relative;

     min-height: calc(100vh - var(--header-height));

     display: flex;
     align-items: center;

     overflow: hidden;

     background: var(--cream);
 }


 .hero-container {
     display: grid;

     grid-template-columns: 1fr 1fr;

     align-items: center;

     gap: 70px;

     padding-top: 70px;
     padding-bottom: 70px;
 }


 /* =========================================
    HERO CONTENT
 ========================================== */

 .hero-content {
     max-width: 620px;
 }


 .hero-eyebrow {
     display: inline-flex;
     align-items: center;

     margin: 0 0 18px;

     color: var(--secondary);

     font-size: 14px;
     font-weight: 800;
     letter-spacing: 1.8px;
     text-transform: uppercase;
 }


 .hero-eyebrow::before {
     content: "";

     width: 30px;
     height: 2px;

     margin-right: 10px;

     background: var(--accent);
 }


 .hero-content h1 {
     margin: 0;

     color: var(--primary);

     font-size: clamp(42px, 5vw, 68px);
     font-weight: 800;

     line-height: 1.08;
     letter-spacing: -2px;
 }


 .hero-content h1 span {
     display: block;

     color: var(--secondary);
 }


 .hero-description {
     max-width: 570px;

     margin: 24px 0 0;

     color: var(--muted);

     font-size: 17px;
     line-height: 1.75;
 }


 /* =========================================
    HERO BUTTONS
 ========================================== */

 .hero-actions {
     display: flex;
     align-items: center;

     gap: 12px;

     margin-top: 32px;
 }


 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;

     min-height: 50px;

     padding: 0 23px;

     border-radius: 8px;

     font-size: 15px;
     font-weight: 700;

     transition:
         transform var(--transition),
         background var(--transition),
         color var(--transition),
         border-color var(--transition);
 }


 .btn svg {
     width: 18px;
     height: 18px;

     margin-right: 8px;

     fill: currentColor;
 }


 .btn-primary {
     color: var(--white);
     background: var(--secondary);

     border: 1px solid var(--secondary);
 }


 .btn-primary:hover {
     background: #b91f30;
     border-color: #b91f30;

     transform: translateY(-2px);
 }


 .btn-secondary {
     color: var(--primary);
     background: transparent;

     border: 1px solid var(--primary);
 }


 .btn-secondary:hover {
     color: var(--white);
     background: var(--primary);

     transform: translateY(-2px);
 }


 /* =========================================
    LOCATION
 ========================================== */

 .hero-location {
     display: flex;
     align-items: flex-start;

     gap: 9px;

     max-width: 520px;

     margin-top: 25px;

     color: var(--muted);

     font-size: 13px;
     line-height: 1.5;
 }


 .hero-location svg {
     width: 18px;
     height: 18px;

     flex-shrink: 0;

     margin-top: 1px;

     fill: var(--secondary);
 }


 /* =========================================
    HERO IMAGE
 ========================================== */

 .hero-image-wrapper {
     position: relative;

     display: flex;
     align-items: center;
     justify-content: center;

     width: 100%;
 }


 .hero-image-wrapper::before {
     content: "";

     position: absolute;

     width: 82%;
     aspect-ratio: 1;

     border-radius: 50%;

     background: rgba(232, 180, 79, 0.14);

     z-index: 0;
 }


 .hero-image {
     position: relative;
     z-index: 1;

     display: block;

     width: 100%;
     max-width: 620px;
     height: auto;

     object-fit: contain;

     border-radius: 20px;
 }


 /* =========================================
    TABLET
 ========================================== */

 @media (max-width: 1000px) {

     .hero-container {
         grid-template-columns: 1fr 0.9fr;

         gap: 40px;

         padding-top: 55px;
         padding-bottom: 55px;
     }


     .hero-content h1 {
         font-size: clamp(38px, 5vw, 54px);
     }


     .hero-description {
         font-size: 16px;
     }

 }


 /* =========================================
    MOBILE
 ========================================== */

 @media (max-width: 820px) {

     .hero-section {
         min-height: auto;
     }


     .hero-container {
         grid-template-columns: 1fr;

         gap: 42px;

         padding-top: 55px;
         padding-bottom: 55px;
     }


     .hero-content {
         max-width: 100%;

         text-align: center;
     }


     .hero-eyebrow {
         justify-content: center;

         font-size: 12px;
     }


     .hero-content h1 {
         font-size: clamp(36px, 10vw, 48px);

         letter-spacing: -1.5px;
     }


     .hero-description {
         margin-inline: auto;

         font-size: 15px;
         line-height: 1.7;
     }


     .hero-actions {
         justify-content: center;

         flex-wrap: wrap;

         margin-top: 27px;
     }


     .hero-location {
         justify-content: center;

         margin-inline: auto;

         text-align: left;
     }


     .hero-image-wrapper {
         max-width: 600px;

         margin-inline: auto;
     }


     .hero-image {
         border-radius: 16px;
     }

 }


 /* =========================================
    SMALL MOBILE
 ========================================== */

 @media (max-width: 480px) {

     .hero-container {
         padding-top: 40px;
         padding-bottom: 45px;

         gap: 35px;
     }


     .hero-content h1 {
         font-size: 36px;
     }


     .hero-description {
         font-size: 14px;
     }


     .hero-actions {
         flex-direction: column;

         width: 100%;
     }


     .btn {
         width: 100%;
     }


     .hero-location {
         font-size: 12px;
     }

 }

 /* ================= ABOUT SECTION ================= */

.about-section {
    position: relative;
    padding: 110px 6%;
    background: #FFF9F0;
    overflow: hidden;
}

.about-container {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 80px;
}


/* ---------- Heading ---------- */

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.heading-line {
    width: 38px;
    height: 3px;
    background: #E9AD2F;
    display: block;
}

.heading-label {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #DF2939;
}


/* ---------- Main Heading ---------- */

.about-content h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 800;
    color: #1E347B;
}

.about-content h2 span {
    color: #DF2939;
}


/* ---------- Paragraph ---------- */

.about-content p {
    max-width: 650px;
    margin: 0 0 16px;

    font-size: 17px;
    line-height: 1.8;
    color: #5F7085;
}

.about-content .about-intro {
    font-size: 18px;
}

.about-content strong {
    color: #1E347B;
}


/* ---------- Features ---------- */

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.feature-icon {
    flex-shrink: 0;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #DF2939;
    color: #FFFFFF;

    font-size: 15px;
    font-weight: 800;
}

.about-feature h4 {
    margin: 0 0 4px;

    font-size: 17px;
    font-weight: 800;
    color: #1E347B;
}

.about-feature p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}


/* ---------- Button ---------- */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 25px;

    background: #1E347B;
    color: #FFFFFF;

    text-decoration: none;
    font-size: 15px;
    font-weight: 700;

    border-radius: 6px;

    transition: all 0.3s ease;
}

.about-btn span {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.about-btn:hover {
    background: #DF2939;
    transform: translateY(-2px);
}

.about-btn:hover span {
    transform: translateX(5px);
}


/* ---------- Right Image ---------- */

.about-visual {
    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-box {
    position: relative;
    z-index: 2;

    width: 88%;
    height: 470px;

    overflow: hidden;

    border-radius: 18px 18px 18px 80px;

    box-shadow: 0 20px 50px rgba(30, 52, 123, 0.15);
}

.about-image-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
}

.about-image-box:hover img {
    transform: scale(1.04);
}


/* ---------- Experience Card ---------- */

.experience-card {
    position: absolute;
    z-index: 4;

    left: 0;
    bottom: 35px;

    min-width: 190px;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: #FFFFFF;

    border-left: 5px solid #DF2939;

    border-radius: 8px;

    box-shadow: 0 15px 40px rgba(30, 52, 123, 0.18);
}

.experience-number {
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    color: #DF2939;
}

.experience-text {
    display: flex;
    flex-direction: column;
}

.experience-text strong {
    font-size: 18px;
    color: #1E347B;
}

.experience-text span {
    font-size: 13px;
    color: #5F7085;
}


/* ---------- Decorative Circle ---------- */

.about-circle {
    position: absolute;

    width: 330px;
    height: 330px;

    top: 10px;
    right: -50px;

    border-radius: 50%;

    background: #E9AD2F;
    opacity: 0.18;

    z-index: 1;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .about-section {
        padding: 80px 5%;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        min-height: 500px;
    }

    .about-image-box {
        width: 90%;
    }
}


@media (max-width: 600px) {

    .about-section {
        padding: 65px 20px;
    }

    .heading-label {
        font-size: 13px;
        letter-spacing: 1.8px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-visual {
        min-height: 400px;
    }

    .about-image-box {
        width: 90%;
        height: 380px;
        border-radius: 14px 14px 14px 55px;
    }

    .experience-card {
        left: 0;
        bottom: 15px;
        min-width: 170px;
        padding: 15px 18px;
    }

    .experience-number {
        font-size: 30px;
    }

    .about-circle {
        width: 220px;
        height: 220px;
        right: -60px;
    }
}

/* ================= PRODUCTS SECTION ================= */

.gulfam-products {
  position: relative;
  padding: 100px 20px;
  background: #fff9ef;
  overflow: hidden;
  font-family: inherit;
}

/* Decorative circles */
.gulfam-products::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(233, 199, 123, 0.14);
  top: -180px;
  left: -180px;
}

.gulfam-products::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(29, 52, 125, 0.045);
  bottom: -180px;
  right: -100px;
}

.products-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

/* Heading */

.products-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.products-heading > span {
  color: #d92735;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
}

.heading-line {
  width: 45px;
  height: 3px;
  background: #e9c77b;
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px 3px;
}

.products-heading h2 {
  margin: 16px 0 14px;
  color: #1d347d;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  font-weight: 800;
}

.products-heading h2 span {
  display: block;
  color: #d92735;
}

.products-heading p {
  margin: 0 auto;
  color: #667085;
  font-size: 16px;
  line-height: 1.8;
  max-width: 650px;
}


/* Product Grid */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


/* Product Card */

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(29, 52, 125, 0.08);
  box-shadow: 0 12px 35px rgba(29, 52, 125, 0.07);
  transition: 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(29, 52, 125, 0.13);
}


/* Image */

.product-image {
  height: 250px;
  position: relative;
  overflow: hidden;
  background: #eee;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.07);
}


/* Product tag */

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 13px;
  background: #ffffff;
  color: #1d347d;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.product-tag.red {
  color: #ffffff;
  background: #d92735;
}


/* Content */

.product-content {
  padding: 25px 25px 28px;
  position: relative;
}

.product-number {
  color: #d92735;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.product-content h3 {
  color: #1d347d;
  font-size: 23px;
  margin: 7px 0 9px;
  font-weight: 800;
}

.product-content p {
  color: #697386;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
}


/* Button */

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  text-decoration: none;
  color: #1d347d;
  font-size: 14px;
  font-weight: 800;
  border-bottom: 2px solid #d92735;
  padding-bottom: 5px;
  transition: 0.3s ease;
}

.product-btn span {
  color: #d92735;
  font-size: 20px;
  transition: 0.3s ease;
}

.product-btn:hover {
  color: #d92735;
}

.product-btn:hover span {
  transform: translateX(5px);
}


/* Bottom CTA */

.products-bottom {
  margin-top: 55px;
  padding: 28px 35px;
  border-radius: 18px;
  background: #1d347d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  position: relative;
  overflow: hidden;
}

.products-bottom::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 35px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  right: -60px;
  top: -80px;
}

.products-bottom span {
  color: #e9c77b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.products-bottom h3 {
  color: #ffffff;
  margin: 5px 0 0;
  font-size: 25px;
}

.products-whatsapp {
  position: relative;
  z-index: 2;
  background: #d92735;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s ease;
}

.products-whatsapp:hover {
  background: #ffffff;
  color: #1d347d;
  transform: translateY(-2px);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 950px) {

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 650px) {

  .gulfam-products {
    padding: 70px 16px;
  }

  .products-heading {
    margin-bottom: 40px;
  }

  .products-heading h2 {
    font-size: 35px;
  }

  .heading-line {
    width: 25px;
    margin: 0 7px 3px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-image {
    height: 230px;
  }

  .products-bottom {
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }

  .products-bottom h3 {
    font-size: 21px;
  }

  .products-whatsapp {
    width: 100%;
    justify-content: center;
  }

}


/* ================= SERVICES ================= */

.gulfam-services {
  position: relative;
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}


/* Heading */

.services-heading {
  max-width: 750px;
  margin: 0 auto 55px;
  text-align: center;
}

.service-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: #d92735;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

.service-label span {
  width: 42px;
  height: 3px;
  background: #e9c77b;
}

.services-heading h2 {
  margin: 18px 0 15px;
  color: #1d347d;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 800;
}

.services-heading h2 strong {
  color: #d92735;
  display: block;
}

.services-heading p {
  margin: auto;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.8;
}


/* Grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}


/* Card */

.service-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;

  padding: 30px;
  background: #fff9ef;

  border: 1px solid rgba(29, 52, 125, 0.08);
  border-radius: 18px;

  transition: all 0.4s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 0;
  background: #d92735;
  transition: 0.4s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(29, 52, 125, 0.14);
  box-shadow: 0 18px 40px rgba(29, 52, 125, 0.10);
}


/* Featured */

.service-card.featured {
  background: #1d347d;
}

.service-card.featured .service-content h3,
.service-card.featured .service-content p {
  color: #ffffff;
}

.service-card.featured .service-content > span {
  color: #e9c77b;
}

.service-card.featured .service-arrow {
  color: #ffffff;
}


/* Icon */

.service-icon {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  border-radius: 14px;

  box-shadow: 0 7px 20px rgba(29, 52, 125, 0.08);
}

.service-icon i {
  font-style: normal;
  font-size: 27px;
}


/* Content */

.service-content {
  flex: 1;
}

.service-content > span {
  color: #d92735;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.service-content h3 {
  color: #1d347d;
  font-size: 21px;
  margin: 5px 0 8px;
  font-weight: 800;
}

.service-content p {
  color: #687386;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}


/* Arrow */

.service-arrow {
  color: #d92735;
  font-size: 25px;
  font-weight: 700;
  transition: 0.3s ease;
}

.service-card:hover .service-arrow {
  transform: translate(4px, -4px);
}


/* CTA */

.services-cta {
  margin-top: 45px;
  padding: 32px 35px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  background: #1d347d;
  border-radius: 18px;

  position: relative;
  overflow: hidden;
}

.services-cta::after {
  content: "";
  position: absolute;

  width: 240px;
  height: 240px;

  border: 45px solid rgba(255,255,255,0.05);
  border-radius: 50%;

  right: -80px;
  top: -130px;
}

.services-cta-text {
  position: relative;
  z-index: 2;
}

.services-cta-text small {
  color: #e9c77b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.services-cta-text h3 {
  color: #ffffff;
  font-size: 27px;
  margin: 5px 0 5px;
}

.services-cta-text p {
  color: rgba(255,255,255,0.72);
  margin: 0;
  font-size: 14px;
}


/* Buttons */

.services-buttons {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.services-buttons a {
  text-decoration: none;
  padding: 14px 21px;
  border-radius: 8px;

  font-size: 14px;
  font-weight: 800;

  transition: 0.3s ease;
}

.service-call {
  background: #d92735;
  color: #ffffff;
}

.service-call:hover {
  background: #ffffff;
  color: #1d347d;
}

.service-whatsapp {
  background: #ffffff;
  color: #1d347d;
}

.service-whatsapp:hover {
  background: #d92735;
  color: #ffffff;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 800px) {

  .gulfam-services {
    padding: 75px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-cta {
    flex-direction: column;
    align-items: flex-start;
  }

}


@media (max-width: 520px) {

  .services-heading h2 {
    font-size: 36px;
  }

  .service-card {
    padding: 23px 20px;
    gap: 15px;
  }

  .service-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
  }

  .service-icon i {
    font-size: 23px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 13px;
  }

  .service-arrow {
    display: none;
  }

  .services-cta {
    padding: 26px 22px;
  }

  .services-cta-text h3 {
    font-size: 23px;
  }

  .services-buttons {
    width: 100%;
    flex-direction: column;
  }

  .services-buttons a {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

}   

/* =========================================
   WHY CHOOSE US
========================================= */

.gulfam-why {
  position: relative;
  padding: 105px 20px;
  background: #fff9ef;
  overflow: hidden;
}

.why-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;

  position: relative;
  z-index: 2;
}


/* =========================================
   LEFT CONTENT
========================================= */

.why-label {
  display: flex;
  align-items: center;
  gap: 11px;

  color: #d92735;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

.why-label span {
  width: 40px;
  height: 3px;
  background: #e9c77b;
}

.why-content h2 {
  margin: 18px 0 15px;

  color: #1d347d;

  font-size: clamp(38px, 5vw, 55px);
  line-height: 1.08;
  font-weight: 800;
}

.why-content h2 strong {
  display: block;
  color: #d92735;
}

.why-intro {
  max-width: 570px;

  margin: 0 0 35px;

  color: #687386;
  font-size: 16px;
  line-height: 1.85;
}


/* =========================================
   FEATURES
========================================= */

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 30px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.why-icon {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  border: 1px solid rgba(29, 52, 125, 0.10);
  border-radius: 12px;

  box-shadow: 0 7px 18px rgba(29, 52, 125, 0.07);

  color: #d92735;
  font-size: 20px;
  font-weight: 800;
}

.why-feature h3 {
  margin: 1px 0 6px;

  color: #1d347d;

  font-size: 17px;
  font-weight: 800;
}

.why-feature p {
  margin: 0;

  color: #737b8a;

  font-size: 13px;
  line-height: 1.65;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.why-visual {
  position: relative;
  min-height: 560px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.why-main-card {
  width: 100%;
  max-width: 500px;
  height: 540px;

  position: relative;
  overflow: hidden;

  border-radius: 28px;

  box-shadow: 0 25px 55px rgba(29, 52, 125, 0.18);

  transform: rotate(1deg);
}

.why-main-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.7s ease;
}

.why-main-card:hover img {
  transform: scale(1.06);
}


/* Image Overlay */

.why-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(16, 31, 78, 0.85),
      rgba(16, 31, 78, 0.05) 60%
    );
}


/* Card Text */

.why-card-text {
  position: absolute;

  left: 32px;
  bottom: 32px;

  color: #ffffff;
}

.why-card-text span {
  color: #e9c77b;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;
}

.why-card-text h3 {
  margin: 7px 0 0;

  font-size: 34px;
  line-height: 1.1;

  font-weight: 800;
}


/* =========================================
   FLOATING BADGE
========================================= */

.why-badge {
  position: absolute;

  left: -35px;
  bottom: 55px;

  display: flex;
  align-items: center;
  gap: 13px;

  padding: 15px 20px;

  background: #ffffff;

  border-radius: 14px;

  box-shadow: 0 15px 35px rgba(29, 52, 125, 0.16);

  z-index: 4;
}

.badge-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #d92735;

  color: #ffffff;

  font-weight: 800;
  font-size: 18px;
}

.why-badge strong,
.why-badge small {
  display: block;
}

.why-badge strong {
  color: #1d347d;
  font-size: 15px;
}

.why-badge small {
  color: #7b8190;
  font-size: 11px;
  margin-top: 2px;
}


/* =========================================
   DECORATION
========================================= */

.why-decoration {
  position: absolute;

  width: 180px;
  height: 180px;

  border: 35px solid rgba(217, 39, 53, 0.08);

  border-radius: 50%;

  right: -65px;
  top: 20px;

  z-index: -1;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

  .why-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .why-content {
    max-width: 750px;
    margin: auto;
  }

  .why-visual {
    max-width: 600px;
    width: 100%;
    margin: auto;
  }

}


@media (max-width: 650px) {

  .gulfam-why {
    padding: 75px 16px;
  }

  .why-content h2 {
    font-size: 38px;
  }

  .why-features {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why-visual {
    min-height: 430px;
  }

  .why-main-card {
    height: 420px;
    border-radius: 20px;
  }

  .why-card-text {
    left: 22px;
    bottom: 22px;
  }

  .why-card-text h3 {
    font-size: 28px;
  }

  .why-badge {
    left: 12px;
    bottom: 25px;
  }

  .why-decoration {
    right: -100px;
  }

}

/* =========================================
   GULFAM GALLERY
========================================= */

.gulfam-gallery {
  width: 100%;
  padding: 90px 20px;
  background: #fff9ef;
  box-sizing: border-box;
}

.gallery-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================================
   GALLERY GRID
========================================= */

.gallery-grid {
  display: grid;

  /* Desktop = 3 photos in one row */
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}


/* =========================================
   GALLERY ITEM
========================================= */

.gallery-item {
  width: 100%;
  height: 320px;

  background: #ffffff;

  border-radius: 14px;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  border: 1px solid rgba(29, 52, 125, 0.08);

  box-shadow:
    0 8px 25px rgba(29, 52, 125, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


.gallery-item:hover {
  transform: translateY(-5px);

  box-shadow:
    0 16px 35px rgba(29, 52, 125, 0.13);
}


/* =========================================
   IMAGE
========================================= */

.gallery-item img {
  width: 100%;
  height: 100%;

  /*
    IMPORTANT:
    contain = image crop nahi hogi.
    Portrait, landscape aur square images
    poori visible rahengi.
  */

  object-fit: contain;

  display: block;

  background: #ffffff;

  transition: transform 0.5s ease;
}


.gallery-item:hover img {
  transform: scale(1.03);
}


/* =========================================
   LIGHTBOX
========================================= */

.gallery-lightbox {
  position: fixed;

  inset: 0;

  background: rgba(10, 18, 40, 0.94);

  display: none;

  align-items: center;
  justify-content: center;

  z-index: 99999;

  padding: 30px;

  box-sizing: border-box;
}


.gallery-lightbox.active {
  display: flex;
}


/* Full image */

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 90vh;

  width: auto;
  height: auto;

  object-fit: contain;

  border-radius: 8px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}


/* Close */

.gallery-close {
  position: absolute;

  top: 20px;
  right: 25px;

  width: 45px;
  height: 45px;

  border: none;

  border-radius: 50%;

  background: #ffffff;

  color: #1d347d;

  font-size: 30px;

  line-height: 1;

  cursor: pointer;

  z-index: 10;
}


/* Previous / Next */

.gallery-prev,
.gallery-next {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 48px;
  height: 48px;

  border: none;

  border-radius: 50%;

  background: #ffffff;

  color: #1d347d;

  font-size: 25px;

  cursor: pointer;

  z-index: 10;

  transition: 0.25s ease;
}


.gallery-prev {
  left: 25px;
}


.gallery-next {
  right: 25px;
}


.gallery-prev:hover,
.gallery-next:hover {
  background: #d92735;
  color: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .gallery-item {
    height: 300px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .gulfam-gallery {
    padding: 60px 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-item {
    height: auto;
    min-height: 280px;
  }

  .gallery-item img {
    max-height: 500px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-lightbox {
    padding: 15px;
  }

  .gallery-lightbox img {
    max-width: 94vw;
    max-height: 85vh;
  }

}

/* =========================================
   GULFAM CTA
========================================= */

.gulfam-cta {
  position: relative;

  padding: 90px 20px;

  background: #fff9ef;

  overflow: hidden;
}

.cta-container {
  position: relative;

  max-width: 1200px;
  min-height: 410px;

  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;

  background: #1d347d;

  border-radius: 28px;

  overflow: hidden;

  box-shadow:
    0 25px 60px rgba(29, 52, 125, 0.18);
}


/* =========================================
   BACKGROUND CIRCLES
========================================= */

.cta-circle {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.cta-circle-one {
  width: 420px;
  height: 420px;

  right: -180px;
  top: -180px;

  border: 65px solid rgba(255,255,255,0.045);
}

.cta-circle-two {
  width: 250px;
  height: 250px;

  left: -130px;
  bottom: -160px;

  background: rgba(217,39,53,0.12);
}


/* =========================================
   CONTENT
========================================= */

.cta-content {
  position: relative;
  z-index: 3;

  padding: 65px 20px 65px 65px;
}

.cta-label {
  display: flex;
  align-items: center;

  gap: 10px;

  color: #e9c77b;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 3px;
}

.cta-label span {
  width: 35px;
  height: 2px;

  background: #d92735;
}


.cta-content h2 {
  color: #ffffff;

  font-size: clamp(34px, 4vw, 49px);

  line-height: 1.1;

  margin: 18px 0 16px;

  font-weight: 800;
}

.cta-content h2 strong {
  display: block;

  color: #d92735;
}


.cta-content p {
  max-width: 570px;

  margin: 0 0 30px;

  color: rgba(255,255,255,0.72);

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================
   BUTTONS
========================================= */

.cta-buttons {
  display: flex;

  gap: 14px;

  flex-wrap: wrap;
}

.cta-buttons a {
  min-width: 190px;

  padding: 13px 17px;

  border-radius: 10px;

  text-decoration: none;

  display: flex;
  align-items: center;

  gap: 12px;

  transition: 0.35s ease;

  box-sizing: border-box;
}


/* Icon */

.cta-button-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;

  background: rgba(255,255,255,0.16);
}


/* Text */

.cta-button-text {
  display: flex;

  flex-direction: column;

  color: #ffffff;

  font-size: 15px;

  font-weight: 800;
}

.cta-button-text small {
  font-size: 10px;

  font-weight: 600;

  opacity: 0.65;

  margin-bottom: 2px;
}


/* Arrow */

.cta-arrow {
  margin-left: auto;

  font-size: 20px;

  transition: 0.3s ease;
}


/* Call */

.cta-call {
  background: #d92735;

  color: #ffffff;
}

.cta-call:hover {
  background: #ffffff;

  transform: translateY(-4px);
}

.cta-call:hover .cta-button-text,
.cta-call:hover .cta-arrow {
  color: #1d347d;
}


/* WhatsApp */

.cta-whatsapp {
  background: rgba(255,255,255,0.10);

  border: 1px solid rgba(255,255,255,0.22);
}

.cta-whatsapp:hover {
  background: #ffffff;

  transform: translateY(-4px);
}

.cta-whatsapp:hover .cta-button-text,
.cta-whatsapp:hover .cta-arrow {
  color: #1d347d;
}


.cta-buttons a:hover .cta-arrow {
  transform: translateX(5px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.cta-visual {
  position: relative;

  height: 100%;

  min-height: 410px;
}


/* Main bedding-inspired shape */

.cta-main-shape {
  position: absolute;

  width: 270px;
  height: 270px;

  right: 65px;
  top: 70px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 30%,
      #fff9ef 0%,
      #f2dfc0 35%,
      #d92735 36%,
      #d92735 51%,
      #1d347d 52%,
      #1d347d 72%,
      #e9c77b 73%
    );

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.18);

  animation: ctaFloat 5s ease-in-out infinite;
}


.cta-bed-icon {
  width: 110px;
  height: 110px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #ffffff;

  color: #1d347d;

  font-size: 50px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.15);
}


/* Floating product circles */

.cta-product {
  position: absolute;

  width: 75px;
  height: 75px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.18);

  font-size: 30px;

  z-index: 5;
}


.cta-product-one {
  top: 45px;
  right: 315px;

  animation: ctaFloat 4s ease-in-out infinite;
}


.cta-product-two {
  bottom: 55px;
  right: 330px;

  animation: ctaFloat 4.5s ease-in-out infinite;
}


.cta-product-three {
  bottom: 45px;
  right: 75px;

  animation: ctaFloat 5.5s ease-in-out infinite;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes ctaFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .cta-container {
    grid-template-columns: 1fr;
  }

  .cta-content {
    padding: 55px 45px 20px;
  }

  .cta-visual {
    min-height: 300px;
  }

  .cta-main-shape {
    width: 220px;
    height: 220px;

    top: 20px;
    right: calc(50% - 110px);
  }

  .cta-product-one {
    top: 15px;
    right: calc(50% + 100px);
  }

  .cta-product-two {
    bottom: 25px;
    right: calc(50% + 110px);
  }

  .cta-product-three {
    bottom: 20px;
    right: calc(50% - 145px);
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .gulfam-cta {
    padding: 60px 15px;
  }

  .cta-container {
    border-radius: 20px;
  }

  .cta-content {
    padding: 42px 25px 10px;
  }

  .cta-content h2 {
    font-size: 34px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
    min-width: 0;
  }

  .cta-visual {
    min-height: 300px;
  }

  .cta-main-shape {
    width: 190px;
    height: 190px;

    right: calc(50% - 95px);
  }

  .cta-bed-icon {
    width: 80px;
    height: 80px;

    font-size: 35px;
  }

  .cta-product {
    width: 55px;
    height: 55px;

    font-size: 22px;
  }

  .cta-product-one {
    right: calc(50% + 65px);
  }

  .cta-product-two {
    right: calc(50% + 75px);
  }

  .cta-product-three {
    right: calc(50% - 120px);
  }

}

/* =========================================
   CONTACT SECTION
========================================= */

.gulfam-contact {
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}


/* =========================================
   HEADING
========================================= */

.contact-heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.contact-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: #d92735;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

.contact-label span {
  width: 40px;
  height: 3px;
  background: #e9c77b;
}

.contact-heading h2 {
  margin: 18px 0 14px;

  color: #1d347d;

  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.1;
  font-weight: 800;
}

.contact-heading h2 strong {
  color: #d92735;
}

.contact-heading p {
  margin: auto;

  color: #6d7585;

  font-size: 15px;
  line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.contact-grid {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 30px;

  align-items: stretch;
}


/* =========================================
   CONTACT CARDS
========================================= */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  position: relative;

  display: flex;
  align-items: center;

  gap: 16px;

  padding: 19px;

  background: #fff9ef;

  border: 1px solid rgba(29, 52, 125, 0.08);

  border-radius: 14px;

  text-decoration: none;

  transition: 0.35s ease;
}

.contact-card:hover {
  transform: translateX(5px);

  background: #ffffff;

  box-shadow:
    0 12px 30px rgba(29, 52, 125, 0.09);

  border-color: rgba(29, 52, 125, 0.14);
}


/* Icon */

.contact-card-icon {
  width: 52px;
  height: 52px;

  flex: 0 0 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1d347d;

  color: #ffffff;

  border-radius: 12px;

  font-size: 21px;
  font-weight: 700;
}

.whatsapp-card .contact-card-icon {
  background: #d92735;
}


/* Content */

.contact-card-content {
  min-width: 0;
  flex: 1;
}

.contact-card-content span {
  display: block;

  color: #d92735;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 4px;
}

.contact-card-content h3 {
  margin: 0 0 4px;

  color: #1d347d;

  font-size: 17px;
  font-weight: 800;
}

.contact-card-content p {
  margin: 0;

  color: #747c8b;

  font-size: 12px;

  line-height: 1.6;
}


/* Arrow */

.contact-card-arrow {
  color: #d92735;

  font-size: 22px;

  transition: 0.3s ease;
}

.contact-card:hover .contact-card-arrow {
  transform: translateX(5px);
}


/* =========================================
   ADDRESS
========================================= */

.address-card {
  align-items: flex-start;
}

.address-card .contact-card-icon {
  background: #d92735;
}

.address-card .contact-card-content h3 {
  font-size: 18px;
}

.address-card .contact-card-content p {
  font-size: 13px;
}


/* =========================================
   OWNER
========================================= */

.contact-owner {
  display: flex;

  align-items: center;

  gap: 13px;

  padding: 13px 5px;

  border-top: 1px solid rgba(29,52,125,0.08);
  border-bottom: 1px solid rgba(29,52,125,0.08);
}

.owner-icon {
  width: 43px;
  height: 43px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1d347d;

  color: #ffffff;

  font-size: 17px;
  font-weight: 800;
}

.contact-owner span {
  display: block;

  color: #d92735;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.8px;
}

.contact-owner h4 {
  margin: 3px 0 0;

  color: #1d347d;

  font-size: 16px;
}


/* =========================================
   SERVICES TAGS
========================================= */

.contact-services {
  padding-top: 4px;
}

.services-title {
  display: block;

  color: #1d347d;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 10px;
}

.service-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}

.service-tags span {
  padding: 7px 10px;

  border-radius: 6px;

  background: #f2eee6;

  color: #536077;

  font-size: 11px;
}


/* =========================================
   GOOGLE LISTING BUTTON
========================================= */

.google-listing-btn {
  display: flex;

  align-items: center;
  gap: 10px;

  width: fit-content;

  padding: 12px 17px;

  border-radius: 8px;

  background: #1d347d;

  color: #ffffff;

  text-decoration: none;

  font-size: 13px;
  font-weight: 800;

  transition: 0.3s ease;
}

.google-listing-btn strong {
  margin-left: 4px;
  font-size: 17px;
}

.google-listing-btn:hover {
  background: #d92735;

  transform: translateY(-2px);
}


/* =========================================
   MAP
========================================= */

.contact-map-wrapper {
  min-height: 620px;

  background: #fff9ef;

  border-radius: 20px;

  padding: 15px;

  border: 1px solid rgba(29,52,125,0.08);

  box-shadow:
    0 15px 40px rgba(29,52,125,0.08);
}


/* Map Top */

.map-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 10px 10px 15px;
}

.map-top span {
  display: block;

  color: #d92735;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 2px;
}

.map-top h3 {
  margin: 3px 0 0;

  color: #1d347d;

  font-size: 22px;
}

.map-top a {
  color: #d92735;

  text-decoration: none;

  font-size: 12px;
  font-weight: 800;
}

.map-top a:hover {
  text-decoration: underline;
}


/* Actual Map */

.contact-map {
  width: 100%;
  height: 480px;

  overflow: hidden;

  border-radius: 14px;

  background: #e9e9e9;
}

.contact-map iframe {
  display: block;
}


/* Map Address */

.map-address {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 15px 8px 3px;
}

.map-pin {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  border-radius: 9px;

  font-size: 17px;
}

.map-address strong {
  display: block;

  color: #1d347d;

  font-size: 14px;
}

.map-address p {
  margin: 3px 0 0;

  color: #70798a;

  font-size: 11px;

  line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-wrapper {
    min-height: auto;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .gulfam-contact {
    padding: 70px 15px;
  }

  .contact-heading {
    margin-bottom: 40px;
  }

  .contact-heading h2 {
    font-size: 36px;
  }

  .contact-card {
    padding: 16px;
  }

  .contact-card-arrow {
    display: none;
  }

  .contact-map-wrapper {
    padding: 10px;

    border-radius: 15px;
  }

  .map-top {
    padding: 9px 6px 13px;
  }

  .map-top h3 {
    font-size: 19px;
  }

  .contact-map {
    height: 350px;
  }

  .map-address {
    padding-bottom: 3px;
  }

}

/* =========================================
   PREMIUM GULFAM FOOTER
========================================= */

.gulfam-footer {
  position: relative;

  background: #111f4d;

  color: #ffffff;

  overflow: hidden;
}


/* =========================================
   TOP LINE
========================================= */

.footer-top-line {
  width: 100%;
  height: 5px;

  background:
    linear-gradient(
      90deg,
      #d92735 0%,
      #d92735 45%,
      #e9c77b 45%,
      #e9c77b 55%,
      #d92735 55%,
      #d92735 100%
    );
}


.footer-container {
  max-width: 1200px;

  margin: auto;

  padding: 70px 20px 0;
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
  display: grid;

  grid-template-columns:
    1.45fr
    0.8fr
    0.8fr
    1.2fr;

  gap: 55px;

  padding-bottom: 55px;
}


/* =========================================
   BRAND
========================================= */

.footer-brand {
  padding-right: 20px;
}


.footer-logo {
  display: inline-flex;

  align-items: center;

  margin-bottom: 20px;

  text-decoration: none;
}


.footer-logo img {
  width: 190px;
  height: auto;

  display: block;

  object-fit: contain;
}


.footer-brand > p {
  max-width: 380px;

  margin: 0 0 15px;

  color: rgba(255,255,255,0.67);

  font-size: 13px;

  line-height: 1.8;
}


.footer-brand .footer-tagline {
  color: #e9c77b;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.3px;
}


/* =========================================
   COLUMNS
========================================= */

.footer-column h3 {
  margin: 5px 0 10px;

  color: #ffffff;

  font-size: 17px;

  font-weight: 800;
}


.footer-heading-line {
  width: 38px;
  height: 3px;

  background: #d92735;

  margin-bottom: 20px;
}


/* =========================================
   LIST
========================================= */

.footer-column ul {
  list-style: none;

  padding: 0;
  margin: 0;
}


.footer-column ul li {
  margin-bottom: 11px;
}


.footer-column ul li a {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: rgba(255,255,255,0.65);

  text-decoration: none;

  font-size: 13px;

  transition: 0.3s ease;
}


.footer-column ul li a span {
  color: #d92735;

  font-size: 15px;

  transition: 0.3s ease;
}


.footer-column ul li a:hover {
  color: #ffffff;

  transform: translateX(4px);
}


.footer-column ul li a:hover span {
  color: #e9c77b;
}


/* =========================================
   CONTACT
========================================= */

.footer-contact-item {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  text-decoration: none;

  color: #ffffff;

  transition: 0.3s ease;
}


.footer-contact-item:hover {
  transform: translateX(4px);
}


.footer-contact-icon {
  width: 39px;
  height: 39px;

  flex: 0 0 39px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: #d92735;

  color: #ffffff;

  font-size: 16px;
}


.footer-contact-icon.whatsapp {
  background: #e9c77b;

  color: #111f4d;
}


.footer-contact-item small {
  display: block;

  margin-bottom: 3px;

  color: #e9c77b;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.footer-contact-item strong {
  display: block;

  color: rgba(255,255,255,0.82);

  font-size: 12px;

  font-weight: 600;

  line-height: 1.55;
}


.footer-contact-item.address {
  align-items: flex-start;
}


/* =========================================
   FOOTER CTA
========================================= */

.footer-cta {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 25px 28px;

  background: #182a63;

  border: 1px solid rgba(255,255,255,0.07);

  border-radius: 15px;

  overflow: hidden;
}


.footer-cta::after {
  content: "";

  position: absolute;

  width: 170px;
  height: 170px;

  right: -70px;
  top: -100px;

  border: 35px solid rgba(233,199,123,0.08);

  border-radius: 50%;
}


.footer-cta-content {
  position: relative;

  z-index: 2;
}


.footer-cta-content span {
  display: block;

  margin-bottom: 4px;

  color: #e9c77b;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 2px;
}


.footer-cta-content h3 {
  margin: 0;

  color: #ffffff;

  font-size: 21px;

  font-weight: 800;
}


/* =========================================
   CTA BUTTONS
========================================= */

.footer-cta-buttons {
  position: relative;

  z-index: 3;

  display: flex;

  gap: 10px;
}


.footer-cta-buttons a {
  padding: 12px 19px;

  border-radius: 7px;

  text-decoration: none;

  font-size: 12px;

  font-weight: 800;

  transition: 0.3s ease;
}


.footer-call-btn {
  background: #d92735;

  color: #ffffff;
}


.footer-call-btn:hover {
  background: #ffffff;

  color: #111f4d;
}


.footer-whatsapp-btn {
  background: #ffffff;

  color: #111f4d;
}


.footer-whatsapp-btn:hover {
  background: #e9c77b;

  color: #111f4d;
}


/* =========================================
   BOTTOM
========================================= */

.footer-bottom {
  margin-top: 30px;

  padding: 20px 0;

  border-top: 1px solid rgba(255,255,255,0.09);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}


.footer-bottom p {
  margin: 0;

  color: rgba(255,255,255,0.45);

  font-size: 11px;
}


.footer-location {
  color: #e9c77b !important;

  font-weight: 600;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

  .footer-main {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: span 3;
  }

}


@media (max-width: 700px) {

  .footer-container {
    padding-top: 55px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;

    gap: 40px 25px;
  }

  .footer-brand {
    grid-column: span 2;

    padding-right: 0;
  }

  .footer-contact {
    grid-column: span 2;
  }

  .footer-cta {
    flex-direction: column;

    align-items: flex-start;
  }

}


@media (max-width: 480px) {

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-logo img {
    width: 175px;
  }

  .footer-cta {
    padding: 22px 20px;
  }

  .footer-cta-content h3 {
    font-size: 18px;
  }

  .footer-cta-buttons {
    width: 100%;
  }

  .footer-cta-buttons a {
    flex: 1;

    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 7px;
  }

}