/* styles.css */

/* --- RESET & VARIABLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gold: #c5a059;
  --dark-gold: #a6823e;
  --bg-topbar: #141414;
  --bg-pill: #f6f3eb;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #dcdcdc;
  --font-serif: 'Georgia', serif;
  --font-sans: 'Arial', sans-serif;
}

body {
  font-family: var(--font-sans);
  background-color: #f9f9f9;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- TOP BAR STYLES --- */
.top-bar {
  background-color: wheat;
  color: var(--text-muted);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left, .top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
}

.top-left .top-item i {
  color: var(--primary-gold);
}

.top-right .location i {
  color: var(--primary-gold);
}

.top-left a:hover {
  color: var(--primary-gold);
}

.divider {
  width: 1px;
  height: 14px;
  background-color: #444;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-gold);
}

/* --- MAIN NAV STYLES --- */
.main-nav {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- MAIN NAV STYLES --- */
.main-nav {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 21px 0;
  position: relative; /* Yeh line zaroori hai dropdown menu ke positioning ke liye */
  z-index: 1000;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /*border: 1px solid var(--primary-gold);*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 20px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 8px;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 1.5px;
  margin-top: -2px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a.active {
  color: var(--primary-gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-gold);
}

.nav-links a:hover {
  color: var(--primary-gold);
}

/* Shop Pill Button */
.pill-btn {
  background-color: var(--bg-pill);
  color: var(--dark-gold) !important;
  padding: 8px 16px !important;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.pill-btn::after {
  display: none !important;
}

/* Book Package Outline Button */
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--primary-gold);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-dark);
  cursor: pointer;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablet View (1024px and below) */
@media (max-width: 1024px) {
  .top-right .location span {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .brand-title {
    font-size: 18px;
  }
}

/* Mobile & Small Tablet View (768px and below) */
@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .top-left, .top-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .divider {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    display: none; /* Hide for mobile layout; use JavaScript to toggle display on menu button click */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

.nav-links {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    background: oldlace;
    padding: 18px;
}

  .nav-cta {
    width: 100%;
    margin-top: 10px;
  }

  .btn-outline {
    display: block;
    text-align: center;
  }
}














/* =========================
   UMRAH HERO SECTION
========================= */

.umrah-hero {
    position: relative;
    min-height: 530px;
    background-image: url('images/umrah-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Dark overlay */
.umrah-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
}

/* Content */
.umrah-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 20px;
}

/* Arabic */
.arabic-text {
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 5px;
    font-family: "Amiri", serif;
    color: #f4eee7;
}

/* Main Heading */
.umrah-content h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -2px;
    color: #fff;
}

.umrah-content h1 span {
    display: block;
    font-size: 61px;
    font-style: italic;
    font-weight: 400;
    margin-top: 5px;
}

/* Description */
.umrah-description {
    margin: 22px 0 0;
    font-size: 17px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    color: rgba(255,255,255,0.88);
}


/* =========================
   FEATURES
========================= */

.umrah-features {
    position: relative;
    z-index: 2;

    width: 100%;
    margin-top: 88px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 20px 20px 10px 10px;

    background: rgba(0,0,0,0.30);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    overflow: hidden;
}

.umrah-feature {
    min-height: 126px;

    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 30px 28px;

    border-right: 1px solid rgba(255,255,255,0.25);
}

.umrah-feature:last-child {
    border-right: none;
}


/* Icon */
.feature-icon {
    width: 28px;
    min-width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 25px;
}


/* Heading */
.umrah-feature h3 {
    margin: 0 0 5px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;
    font-weight: 600;

    color: #fff;
}


/* Text */
.umrah-feature p {
    margin: 0;

    max-width: 220px;

    font-family: Arial, sans-serif;

    font-size: 14px;
    line-height: 1.4;

    color: rgba(255,255,255,0.72);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .umrah-content h1 {
        font-size: 52px;
    }

    .umrah-content h1 span {
        font-size: 48px;
    }

    .umrah-features {
        margin-top: 60px;
    }

    .umrah-feature {
        padding: 25px 18px;
        gap: 12px;
    }

    .umrah-feature h3 {
        font-size: 19px;
    }

    .umrah-feature p {
        font-size: 13px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .umrah-hero {
        min-height: auto;
        padding: 70px 0 25px;
        background-position: center;
    }

    .umrah-content {
        padding: 0 15px;
    }

    .arabic-text {
        font-size: 23px;
    }

    .umrah-content h1 {
        font-size: 42px;
        line-height: 1;
        letter-spacing: -1px;
    }

    .umrah-content h1 span {
        font-size: 38px;
        margin-top: 8px;
    }

    .umrah-description {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 18px;
    }

    .umrah-description br {
        display: none;
    }

    .umrah-features {
        margin-top: 45px;
        grid-template-columns: 1fr;

        border-radius: 15px;
    }

    .umrah-feature {
        min-height: auto;
        padding: 22px 20px;

        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.25);
    }

    .umrah-feature:last-child {
        border-bottom: none;
    }

    .umrah-feature h3 {
        font-size: 20px;
    }

    .umrah-feature p {
        max-width: 100%;
        font-size: 13px;
    }
}














/* =========================================
   PACKAGES SECTION
========================================= */

.packages-section {
    background: #f8f7f4;
    padding: 70px 0 25px;
}

.packages-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* =========================================
   HEADER
========================================= */

.packages-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.packages-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #a77a3d;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2px;
    margin-bottom: 5px;
}

.packages-eyebrow span {
    width: 14px;
    height: 1px;
    background: #a77a3d;
    display: inline-block;
}


.packages-header h2 {
    margin: 0;

    color: #111820;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;

    letter-spacing: -1.2px;
}


.all-packages {
    text-decoration: none;

    color: #a77a3d;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 7px;
}

.all-packages i {
    font-size: 8px;
    margin-left: 5px;
}


/* =========================================
   GRID
========================================= */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* =========================================
   CARD
========================================= */

.package-card {
    background: #fff;

    border: 1px solid #e1ddd6;

    overflow: hidden;

    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}


/* =========================================
   IMAGE
========================================= */

.package-image {
    height: 144px;
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.package-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.04);
}


/* =========================================
   BADGE
========================================= */

.package-badge {
    position: absolute;

    top: 10px;
    right: 9px;

    background: #a17a40;
    color: #fff;

    padding: 5px 9px;

    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;

    letter-spacing: .5px;

    white-space: nowrap;
}


/* =========================================
   BODY
========================================= */

.package-body {
    padding: 19px 18px 18px;
}


/* =========================================
   TITLE + DAYS
========================================= */

.package-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 8px;
}
.package-title-row h3 {
    margin: 0;
    color: #101820;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
}
.package-days {
    flex-shrink: 0;

    color: #a77a3d;

    font-family: Arial, sans-serif;
    font-size: 9px;
    line-height: 1.25;

    text-align: left;
}


/* =========================================
   PRICE
========================================= */

.package-price {
    margin-top: 10px;

    color: #b18448;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 600;
}


/* =========================================
   DIVIDER
========================================= */

.package-divider {
    width: 100%;
    height: 1px;

    background: #e9e4dc;

    margin: 12px 0 10px;
}


/* =========================================
   LIST
========================================= */

.package-body ul {
    padding: 0;
    margin: 0 0 17px;

    list-style: none;
}

.package-body ul li {
    position: relative;
    padding-left: 11px;
    margin-bottom: 6px;
    color: #747474;
    font-family: Arial, sans-serif;
    font-size: 13.5px;
    line-height: 1.35;
}

.package-body ul li::before {
    content: "";

    width: 4px;
    height: 4px;

    position: absolute;
    left: 0;
    top: 5px;

    background: #b18448;
    border-radius: 50%;
}


/* =========================================
   BUTTON
========================================= */

.package-btn {
    display: block;
    width: 100%;
    padding: 17px 5px;
    border: 1px solid #b18448;
    background: transparent;
    color: #a4773d;
    text-align: center;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all .3s ease;
}

.package-btn:hover {
    background: #a4773d;
    color: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-header h2 {
        font-size: 34px;
    }

    .package-image {
        height: 180px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .packages-section {
        padding: 50px 0 20px;
    }

    .packages-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .packages-header h2 {
        font-size: 31px;
    }

    .all-packages {
        margin-bottom: 0;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .package-image {
        height: 210px;
    }

    .package-body {
        padding: 20px;
    }

    .package-title-row h3 {
        font-size: 12px;
    }

    .package-price {
        font-size: 21px;
    }

    .package-body ul li {
        font-size: 11px;
    }

    .package-btn {
        padding: 10px;
        font-size: 10px;
    }
}
















/* =========================================
   SPIRITUAL VOYAGE
========================================= */

.voyage-section {
    background: #f4f1e8;
    padding: 65px 0 70px;
}

.voyage-section .container {
    max-width: 100%;
    padding: 0 22px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.voyage-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 32px;
}

.voyage-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #a47a40;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;

    letter-spacing: 2px;

    margin-bottom: 6px;
}

.voyage-eyebrow span {
    width: 14px;
    height: 1px;

    display: inline-block;

    background: #a47a40;
}


.voyage-header h2 {
    margin: 0;

    color: #101820;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;

    letter-spacing: -1px;
}


.voyage-more {
    color: #9c713b;

    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 600;

    letter-spacing: .8px;

    margin-bottom: 8px;
}

.voyage-more i {
    font-size: 7px;
    margin-left: 5px;
}


/* =========================================
   GRID
========================================= */

.voyage-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   CARD
========================================= */

.voyage-card {
    position: relative;

    height: 345px;

    overflow: hidden;

    background: #111;

    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}


.voyage-card > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.voyage-card:hover > img {
    transform: scale(1.04);
}


/* Dark overlay */
.voyage-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.08) 30%,
        rgba(0,0,0,.15) 55%,
        rgba(0,0,0,.55) 100%
    );

    pointer-events: none;
}


/* =========================================
   TAG
========================================= */

.voyage-tag {
    position: absolute;

    top: 13px;
    left: 12px;

    z-index: 3;

    padding: 4px 9px;

    border: 1px solid rgba(190,150,90,.75);

    background: rgba(15,15,15,.75);

    color: #fff;

    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 600;

    letter-spacing: .3px;
}


/* =========================================
   CONTENT BOX
========================================= */

.voyage-content {
    position: absolute;

    z-index: 4;

    left: 13px;
    right: 13px;
    bottom: 13px;

    min-height: 87px;

    padding: 15px 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    background: rgba(255,255,255,.94);

    border-left: 3px solid #ad8145;

    box-sizing: border-box;
}


/* =========================================
   CARD TITLE
========================================= */

.voyage-content h3 {
    margin: 0 0 4px;

    color: #111820;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1.1;
    font-weight: 700;
}


/* =========================================
   DESCRIPTION
========================================= */

.voyage-content p {
    margin: 0;

    max-width: 330px;

    color: #777;

    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.5;
}


/* =========================================
   ARROW BUTTON
========================================= */

.voyage-arrow {
    flex-shrink: 0;

    width: 29px;
    height: 29px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f2eee4;

    color: #a67b40;

    text-decoration: none;

    transition: all .3s ease;
}

.voyage-arrow i {
    font-size: 9px;
}

.voyage-arrow:hover {
    background: #a67b40;
    color: #fff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .voyage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .voyage-card {
        height: 350px;
    }

    .voyage-header h2 {
        font-size: 34px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .voyage-section {
        padding: 50px 0;
    }

    .voyage-section .container {
        padding: 0 15px;
    }

    .voyage-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 15px;

        margin-bottom: 25px;
    }

    .voyage-header h2 {
        font-size: 30px;
    }

    .voyage-more {
        margin-bottom: 0;
    }

    .voyage-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .voyage-card {
        height: 360px;
    }

    .voyage-content {
        left: 12px;
        right: 12px;
        bottom: 12px;

        padding: 15px;

        min-height: 90px;
    }

    .voyage-content h3 {
        font-size: 19px;
    }

    .voyage-content p {
        font-size: 10px;
    }
}













/* =========================================
   FAITH SECTION
========================================= */

.faith-section {
    width: 100%;
    background: #f8f8f6;
    padding: 60px 0;
}

.faith-section .container {
    max-width: 1400px;
}


/* =========================================
   HEADING
========================================= */

.faith-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.faith-label {
    color: #a4773b;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.faith-label span {
    display: inline-block;
    width: 17px;
    height: 1px;
    background: #a4773b;
    margin-right: 8px;
    vertical-align: middle;
}

.faith-heading h2 {
    padding: 0;
    margin: 0;
    color: #071625;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
}

.faith-more {
    color: #9a7139;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 5px;
}

.faith-more i {
    font-size: 10px;
    margin-left: 4px;
}


/* =========================================
   MAIN GRID
========================================= */

.faith-grid {
    display: grid;

    /*
       1st column = Image
       Remaining 2 columns = Services
    */
    grid-template-columns: 1fr 1fr 1fr;

    grid-template-rows: repeat(3, 99px);

    gap: 20px 24px;
}


/* =========================================
   IMAGE
========================================= */

.faith-main-image {
    grid-column: 1;
    grid-row: 1 / 4;

    position: relative;
    overflow: hidden;

    width: 100%;
    height: 100%;
    min-height: 0;
}

.faith-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.faith-image-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.05) 70%
    );
}

.faith-image-text {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;
}

.faith-image-text small {
    display: block;

    color: #c19a5a;
    font-size: 9px;
    letter-spacing: 1.4px;
    font-weight: 600;
}

.faith-image-text h3 {
    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;
    line-height: 1.2;

    margin: 5px 0 0;

    font-weight: 600;
}


/* =========================================
   SERVICE CARDS
========================================= */

.faith-card {
    background: #fff;

    border: 1px solid #e3ded6;

    width: 100%;
    height: 99px;

    display: flex;
    align-items: center;

    padding: 18px 19px;

    gap: 13px;

    box-sizing: border-box;

    transition: all .25s ease;
}

.faith-card:hover {
    border-color: #c5a16a;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, .05);
}


/* =========================================
   ICON
========================================= */

.faith-icon {
    width: 45px;
    height: 45px;

    min-width: 45px;

    border: 1px solid #dacdb9;

    background: #f7f3eb;

    display: flex;
    align-items: center;
    justify-content: center;
}

.faith-icon i {
    font-size: 19px;
    color: #55534e;
}


/* =========================================
   CARD CONTENT
========================================= */

.faith-card-content {
    min-width: 0;
}

.faith-card h4 {
    color: #071625;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 15px;

    margin: 0 0 5px;

    line-height: 1.2;

    font-weight: 600;
}

.faith-card p {
    color: #77736d;

    font-size: 10px;

    line-height: 1.5;

    margin: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .faith-section {
        padding: 50px 15px;
    }

    .faith-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .faith-main-image {
        grid-column: 1 / 3;
        grid-row: auto;

        height: 380px;
    }

    .faith-card {
        height: 105px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .faith-section {
        padding: 40px 15px;
    }

    .faith-heading {
        display: block;
        margin-bottom: 25px;
    }

    .faith-heading h2 {
        font-size: 31px;
    }

    .faith-more {
        display: inline-block;
        margin-top: 15px;
    }

    .faith-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faith-main-image {
        grid-column: auto;
        grid-row: auto;

        height: 330px;
    }

    .faith-card {
        height: auto;
        min-height: 100px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .faith-section {
        padding: 35px 12px;
    }

    .faith-heading h2 {
        font-size: 28px;
    }

    .faith-main-image {
        height: 300px;
    }

    .faith-card {
        padding: 16px;
    }
}













/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonial-section {
    position: relative;
    width: 100%;
    min-height: 515px;

    background-image: url("assets/images/testimonial/testimonial-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* DARK / WARM OVERLAY */

.testimonial-overlay {
    position: absolute;
    inset: 0;

    background: rgba(75, 67, 52, 0.40);

    z-index: 1;
}


/* CONTENT */

.testimonial-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    min-height: 515px;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    width: 518px;
    min-height: 357px;

    background: rgba(255, 255, 255, 0.97);

    padding: 34px 36px 30px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}


/* =========================================
   STARS
========================================= */

.testimonial-stars {
    display: flex;
    gap: 8px;

    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ad823f;
    font-size: 15px;
}


/* =========================================
   REVIEW TEXT
========================================= */

.testimonial-review {
    margin: 0;

    color: #333;

    font-family: "Cormorant Garamond", serif;

    font-size: 17px;
    font-weight: 500;

    font-style: italic;

    line-height: 1.45;
}


/* =========================================
   DIVIDER
========================================= */

.testimonial-bottom {
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    border-top: 1px solid #ddd4c5;

    margin-top: 25px;
    padding-top: 21px;
}


/* =========================================
   USER
========================================= */

.testimonial-user h4 {
    margin: 0 0 5px;

    color: #222;

    font-family: "Cormorant Garamond", serif;

    font-size: 15px;
    font-weight: 700;
}

.testimonial-user p {
    margin: 0;

    color: #ad823f;

    font-family: "Montserrat", sans-serif;

    font-size: 8.5px;
    font-weight: 600;

    letter-spacing: .3px;

    line-height: 1.5;
}

.testimonial-user p span {
    padding: 0 3px;
}


/* =========================================
   QUOTE ICON
========================================= */

.testimonial-quote {
    color: #d9c7a5;

    font-size: 27px;

    line-height: 1;

    padding-right: 1px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .testimonial-section {
        min-height: 500px;
    }

    .testimonial-content {
        min-height: 500px;
    }

    .testimonial-card {
        width: 500px;
        min-height: auto;

        padding: 30px;
    }

    .testimonial-review {
        font-size: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .testimonial-section {
        min-height: 600px;

        background-position: center;
    }

    .testimonial-content {
        min-height: 600px;

        align-items: center;
        justify-content: center;

        padding: 30px 15px;
    }

    .testimonial-card {
        width: 100%;
        max-width: 520px;

        min-height: auto;

        padding: 25px 22px;
    }

    .testimonial-stars {
        gap: 6px;
        margin-bottom: 15px;
    }

    .testimonial-stars i {
        font-size: 13px;
    }

    .testimonial-review {
        font-size: 16px;
        line-height: 1.5;
    }

    .testimonial-bottom {
        margin-top: 20px;
        padding-top: 17px;
    }

    .testimonial-user h4 {
        font-size: 14px;
    }

    .testimonial-user p {
        font-size: 7px;
        max-width: 280px;
    }

    .testimonial-quote {
        font-size: 23px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .testimonial-section {
        min-height: 620px;
    }

    .testimonial-content {
        min-height: 620px;
    }

    .testimonial-card {
        padding: 22px 18px;
    }

    .testimonial-review {
        font-size: 15px;
    }

    .testimonial-user p {
        font-size: 6.5px;
    }

}








/* =========================================
   FAITH SECTION
========================================= */

.faith-section {
    width: 100%;
    background: #f8f8f6;
    padding: 60px 0;
}

.faith-section .container {
    max-width: 1400px;
}


/* =========================================
   HEADING
========================================= */

.faith-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.faith-label {
    color: #a4773b;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.faith-label span {
    display: inline-block;
    width: 17px;
    height: 1px;
    background: #a4773b;
    margin-right: 8px;
    vertical-align: middle;
}

.faith-heading h2 {
    padding: 0;
    margin: 0;
    color: #071625;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
}

.faith-more {
    color: #9a7139;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 5px;
}

.faith-more i {
    font-size: 10px;
    margin-left: 4px;
}


/* =========================================
   MAIN GRID
========================================= */

.faith-grid {
    display: grid;

    /*
       1st column = Image
       Remaining 2 columns = Services
    */
    grid-template-columns: 1fr 1fr 1fr;

    grid-template-rows: repeat(3, 99px);

    gap: 20px 24px;
}


/* =========================================
   IMAGE
========================================= */

.faith-main-image {
    grid-column: 1;
    grid-row: 1 / 4;

    position: relative;
    overflow: hidden;

    width: 100%;
    height: 100%;
    min-height: 0;
}

.faith-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.faith-image-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.05) 70%
    );
}

.faith-image-text {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;
}

.faith-image-text small {
    display: block;

    color: #c19a5a;
    font-size: 9px;
    letter-spacing: 1.4px;
    font-weight: 600;
}

.faith-image-text h3 {
    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;
    line-height: 1.2;

    margin: 5px 0 0;

    font-weight: 600;
}


/* =========================================
   SERVICE CARDS
========================================= */

.faith-card {
    background: #fff;

    border: 1px solid #e3ded6;

    width: 100%;
    height: 99px;

    display: flex;
    align-items: center;

    padding: 18px 19px;

    gap: 13px;

    box-sizing: border-box;

    transition: all .25s ease;
}

.faith-card:hover {
    border-color: #c5a16a;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, .05);
}


/* =========================================
   ICON
========================================= */

.faith-icon {
    width: 45px;
    height: 45px;

    min-width: 45px;

    border: 1px solid #dacdb9;

    background: #f7f3eb;

    display: flex;
    align-items: center;
    justify-content: center;
}

.faith-icon i {
    font-size: 19px;
    color: #55534e;
}


/* =========================================
   CARD CONTENT
========================================= */

.faith-card-content {
    min-width: 0;
}

.faith-card h4 {
    color: #071625;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 15px;

    margin: 0 0 5px;

    line-height: 1.2;

    font-weight: 600;
}

.faith-card p {
    color: #77736d;

    font-size: 10px;

    line-height: 1.5;

    margin: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .faith-section {
        padding: 50px 15px;
    }

    .faith-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .faith-main-image {
        grid-column: 1 / 3;
        grid-row: auto;

        height: 380px;
    }

    .faith-card {
        height: 105px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .faith-section {
        padding: 40px 15px;
    }

    .faith-heading {
        display: block;
        margin-bottom: 25px;
    }

    .faith-heading h2 {
        font-size: 31px;
    }

    .faith-more {
        display: inline-block;
        margin-top: 15px;
    }

    .faith-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faith-main-image {
        grid-column: auto;
        grid-row: auto;

        height: 330px;
    }

    .faith-card {
        height: auto;
        min-height: 100px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .faith-section {
        padding: 35px 12px;
    }

    .faith-heading h2 {
        font-size: 28px;
    }

    .faith-main-image {
        height: 300px;
    }

    .faith-card {
        padding: 16px;
    }
}


/* =====================================================
   PILLARS & SERVICES
   Completely isolated CSS
===================================================== */

.pfs-section {
    width: 100% !important;
    background: #f8f8f6 !important;
    padding: 55px 18px 60px !important;
    box-sizing: border-box !important;
}

.pfs-section *,
.pfs-section *::before,
.pfs-section *::after {
    box-sizing: border-box !important;
}


/* =====================================================
   MAIN WIDTH
===================================================== */

.pfs-wrap {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}


/* =====================================================
   HEADING
===================================================== */

.pfs-top {
    width: 100% !important;

    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;

    margin: 0 0 36px 0 !important;
    padding: 0 !important;
}

.pfs-title-box {
    margin: 0 !important;
    padding: 0 !important;
}

.pfs-subtitle {
    margin: 0 0 7px 0 !important;
    padding: 0 !important;

    color: #a0783c !important;

    font-family: Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;

    letter-spacing: 2px !important;
    line-height: 1 !important;

    text-transform: uppercase !important;
}

.pfs-subtitle span {
    display: inline-block !important;

    width: 16px !important;
    height: 1px !important;

    margin: 0 7px 3px 0 !important;

    background: #a0783c !important;
}

.pfs-title-box h2 {
    margin: 0 !important;
    padding: 0 !important;

    color: #071827 !important;

    font-family: Georgia, "Times New Roman", serif !important;

    font-size: 40px !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
}


/* =====================================================
   LEARN MORE
===================================================== */

.pfs-learn {
    display: flex !important;
    align-items: center !important;

    margin: 0 2px 3px 0 !important;
    padding: 0 !important;

    color: #9c7339 !important;

    font-family: Arial, sans-serif !important;
    font-size: 9px !important;
    font-weight: 600 !important;

    letter-spacing: 1.3px !important;

    text-decoration: none !important;
    white-space: nowrap !important;
}

.pfs-learn b {
    margin: 0 0 0 5px !important;
    padding: 0 !important;

    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 10px !important;
}


/* =====================================================
   MAIN GRID

   IMAGE = 1 COLUMN
   SERVICES = 2 COLUMNS
===================================================== */

.pfs-layout {
    width: 100% !important;

    display: grid !important;

    grid-template-columns:
        32% 
        1fr
        1fr !important;

    grid-template-rows:
        99px
        99px
        99px !important;

    column-gap: 24px !important;
    row-gap: 20px !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =====================================================
   FEATURE IMAGE
===================================================== */

.pfs-feature {
    position: relative !important;

    grid-column: 1 !important;
    grid-row: 1 / 4 !important;

    width: 100% !important;
    height: 100% !important;

    min-width: 0 !important;
    min-height: 0 !important;

    overflow: hidden !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #222 !important;
}

.pfs-feature img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;
    object-position: center !important;
}

.pfs-dark {
    position: absolute !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 35%,
        rgba(0,0,0,0.72) 100%
    ) !important;

    pointer-events: none !important;
}

.pfs-feature-content {
    position: absolute !important;

    left: 20px !important;
    right: 15px !important;
    bottom: 20px !important;

    margin: 0 !important;
    padding: 0 !important;
}

.pfs-feature-content span {
    display: block !important;

    margin: 0 0 6px 0 !important;
    padding: 0 !important;

    color: #c39a5b !important;

    font-family: Arial, sans-serif !important;
    font-size: 9px !important;
    font-weight: 600 !important;

    letter-spacing: 1.2px !important;
}

.pfs-feature-content h3 {
    margin: 0 !important;
    padding: 0 !important;

    color: #fff !important;

    font-family: Georgia, "Times New Roman", serif !important;

    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.pfs-service {
    width: 100% !important;
    height: 99px !important;

    min-width: 0 !important;
    min-height: 99px !important;

    display: flex !important;
    align-items: center !important;

    margin: 0 !important;
    padding: 18px 19px !important;

    gap: 13px !important;

    background: #fff !important;

    border: 1px solid #e3ded5 !important;

    overflow: hidden !important;
}


/* =====================================================
   ICON
===================================================== */

.pfs-service-icon {
    flex: 0 0 45px !important;

    width: 45px !important;
    height: 45px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #f7f3eb !important;

    border: 1px solid #d9cdbb !important;
}

.pfs-service-icon span {
    color: #55534d !important;

    font-family: Georgia, serif !important;

    font-size: 21px !important;
    line-height: 1 !important;
}


/* =====================================================
   CARD TEXT
===================================================== */

.pfs-service-text {
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
}

.pfs-service-text h4 {
    margin: 0 0 6px 0 !important;
    padding: 0 !important;

    color: #071827 !important;

    font-family: Georgia, "Times New Roman", serif !important;

    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
}

.pfs-service-text p {
    margin: 0 !important;
    padding: 0 !important;

    color: #756f69 !important;

    font-family: Arial, sans-serif !important;

    font-size: 9.5px !important;
    font-weight: 400 !important;

    line-height: 1.55 !important;
}


/* =====================================================
   HOVER
===================================================== */

.pfs-service {
    transition: border-color .25s ease, box-shadow .25s ease !important;
}

.pfs-service:hover {
    border-color: #c8a46d !important;

    box-shadow: 0 5px 15px rgba(0,0,0,.04) !important;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .pfs-section {
        padding: 50px 20px !important;
    }

    .pfs-layout {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto !important;
        gap: 18px !important;
    }

    .pfs-feature {
        grid-column: 1 / 3 !important;
        grid-row: auto !important;

        height: 380px !important;
    }

    .pfs-service {
        height: 100px !important;
        min-height: 100px !important;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .pfs-section {
        padding: 40px 15px !important;
    }

    .pfs-top {
        display: block !important;
        margin-bottom: 25px !important;
    }

    .pfs-title-box h2 {
        font-size: 31px !important;
    }

    .pfs-learn {
        margin-top: 14px !important;
    }

    .pfs-layout {
        display: grid !important;

        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;

        gap: 14px !important;
    }

    .pfs-feature {
        grid-column: 1 !important;
        grid-row: auto !important;

        height: 320px !important;
    }

    .pfs-service {
        width: 100% !important;
        height: 100px !important;
        min-height: 100px !important;

        padding: 16px !important;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .pfs-title-box h2 {
        font-size: 28px !important;
    }

    .pfs-feature {
        height: 290px !important;
    }

    .pfs-service-icon {
        flex-basis: 42px !important;
        width: 42px !important;
        height: 42px !important;
    }

    .pfs-service-text p {
        font-size: 9px !important;
    }
}








/* =========================
   EASY PROCESS SECTION
========================= */

.easy-process {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
    padding: 55px 0 0;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;

    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
}


/* =========================
   LEFT CONTENT
========================= */

.process-content {
    padding: 0 20px 55px 0;
}

.process-title {
    margin: 0 0 95px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: #101010;
}


/* =========================
   PROCESS LIST
========================= */

.process-list {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 0;
}

.step-number {
    padding-top: 5px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
    font-weight: 400;
    color: #222;
}

.step-info {
    max-width: 390px;
}

.step-info h3 {
    margin: 0 0 7px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.3;
    color: #111;
}

.step-info p {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.55;
    color: #888;
}


/* =========================
   RIGHT IMAGE
========================= */

.process-image {
    width: 100%;
    height: 520px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;

    display: block;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .process-container {
        grid-template-columns: 1fr;
    }

    .process-content {
        padding-right: 0;
    }

    .process-title {
        margin-bottom: 55px;
        font-size: 42px;
    }

    .step-info {
        max-width: 500px;
    }

    .process-image {
        height: 430px;
        margin-top: 20px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .easy-process {
        padding-top: 40px;
    }

    .process-container {
        padding: 0 20px;
    }

    .process-title {
        font-size: 38px;
        margin-bottom: 45px;
    }

    .process-list {
        gap: 30px;
    }

    .process-step {
        grid-template-columns: 40px 1fr;
    }

    .step-info h3 {
        font-size: 18px;
    }

    .step-info p {
        font-size: 11px;
        line-height: 1.6;
    }

    .process-image {
        height: 330px;
        margin-top: 15px;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

/* Section Wrapper */
.news-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #f6f3ea;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-sizing: border-box;
}

/* Header Styles */
.news-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.news-section .subtitle {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #767676;
  margin-bottom: 8px;
}

.news-section .subtitle::before {
  content: "— ";
}

.news-section .title {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.1;
  margin: 0;
}

.news-section .read-all-btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8b7355;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.news-section .read-all-btn:hover {
  gap: 10px;
}

/* Cards Grid */
.news-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* Card Container */
.news-section .card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Image & Badge Overlay */
.news-section .image-wrapper {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.news-section .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-section .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(30, 30, 30, 0.85);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  z-index: 2;
}

/* Card Content Area */
.news-section .card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-section .card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: #767676;
  margin-bottom: 12px;
}

.news-section .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-section .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px 0;
  color: #111111;
}

.news-section .card-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #767676;
  margin: 0 0 24px 0;
}

/* Card Footer */
.news-section .card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #ebebeb;
}

.news-section .read-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8b7355;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.news-section .read-link .arrow {
  transition: transform 0.2s ease;
}

.news-section .card:hover .read-link .arrow {
  transform: translateX(4px);
}



@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* Base Footer Styles */
.site-footer {
  background-color: #121212;
  color: #a0a0a0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding-top: 60px;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px 50px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.1fr;
  gap: 40px;
}

/* Typography & Links General */
.site-footer a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.col-title {
  font-family: 'Cinzel', serif;
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a2a;
}

/* Column 1: Brand */
.brand-title {
  font-family: 'Cinzel', serif;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #c5a059;
  margin-top: 4px;
  margin-bottom: 18px;
  font-weight: 600;
}

.brand-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #888888;
}

/* Column 2: Quick Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.footer-links li.active a {
  color: #ffffff;
  font-weight: 600;
}

.footer-links li.active::before {
  content: "• ";
  color: #c5a059;
  margin-right: 4px;
}

.footer-links li.highlight a {
  color: #c5a059;
}

/* Column 3: Contact Info */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-list .icon {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Column 4: Newsletter */
.newsletter-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 18px;
  color: #888888;
}

.newsletter-form {
  display: flex;
  width: 100%;
}

.newsletter-form input {
  background: transparent;
  border: 1px solid #333333;
  border-right: none;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 0.8rem;
  outline: none;
  flex: 1;
  border-radius: 2px 0 0 2px;
}

.newsletter-form input::placeholder {
  color: #555555;
}

.newsletter-form button {
  background-color: #c5a059;
  border: none;
  color: #121212;
  padding: 0 16px;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.newsletter-form button:hover {
  background-color: #d4af66;
}

.privacy-text {
  font-size: 0.7rem;
  color: #666666;
  margin-top: 10px;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid #222222;
  padding: 20px 0;
  font-size: 0.8rem;
  color: #666666;
}

.bottom-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.developer-link {
  color: #c5a059;
  text-decoration: underline;
}

.back-to-top {
  font-size: 0.8rem;
  color: #888888;
}

/* Responsive Layout */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 550px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}











@import url('https://fonts.googleapis.com/css2?family=Amiri&family=Playfair+Display:wght@500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500&display=swap');

.hero-section {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1564769625905-50e93615e769?auto=format&fit=crop&w=1600&q=80'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Dark Overlay for contrast */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.75); /* Dark shade filter */
  z-index: 1;
}

/* Content Wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
}

/* Arabic Calligraphy Style */
.hero-content .arabic-text {
  font-family: 'Amiri', serif;
  font-size: 2.2rem;
  color: #e0cca7;
  margin-bottom: 12px;
  direction: rtl;
  letter-spacing: 1px;
  line-height: 1.6;
}

/* Main Heading */
.hero-content .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin: 0 0 16px 0;
  color: #ffffff;
  line-height: 1.1;
}

/* Subtitle Description */
.hero-content .hero-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: #d1d1d1;
  max-width: 680px;
  margin: 0 auto 32px auto;
}

/* Buttons Container */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Common Button Styles */
.hero-buttons .btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Primary Filled Button */
.hero-buttons .btn-primary {
  background-color: #c5a059;
  color: #ffffff;
  border: 1px solid #c5a059;
}

.hero-buttons .btn-primary:hover {
  background-color: #b38e47;
  border-color: #b38e47;
}

/* Outline Button */
.hero-buttons .btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content .arabic-text {
    font-size: 1.75rem;
  }
  .hero-content .hero-title {
    font-size: 2.5rem;
  }
  .hero-content .hero-subtitle {
    font-size: 0.875rem;
  }
}












@import url('https://fonts.googleapis.com/css2?family=Amiri&family=Playfair+Display:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.timeline-section {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fcfbf7;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #222222;
  box-sizing: border-box;
}

.timeline-container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
}

/* --- SIDEBAR STYLES --- */
.timeline-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #777777;
  font-weight: 600;
  text-transform: uppercase;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background-color: #ffffff;
  border: 1px solid #e5e0d8;
  border-radius: 4px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.step-card:hover {
  border-color: #c5a059;
}

.step-card.active {
  border: 1.5px solid #c5a059;
  background-color: #fdfbf7;
}

.step-card .step-num {
  font-size: 0.8rem;
  font-weight: 600;
  color: #c5a059;
  background: #f6efe2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-card .step-info {
  flex-grow: 1;
}

.step-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111111;
  margin: 0 0 2px 0;
}

.step-card .arabic {
  font-family: 'Amiri', serif;
  font-size: 0.85rem;
  color: #888888;
  display: block;
}

.step-card .arrow {
  font-size: 1.2rem;
  color: #cccccc;
}

.step-card.active .arrow {
  color: #c5a059;
}

/* Support Box */
.support-box {
  background-color: #121212;
  color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  border-left: 3px solid #c5a059;
}

.support-tag {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: #c5a059;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.support-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0 0 10px 0;
}

.support-box p {
  font-size: 0.78rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin-bottom: 18px;
}

.support-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-buttons a {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 2px;
}

.btn-call {
  background-color: #c5a059;
  color: #121212;
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
}

/* --- MAIN CONTENT STYLES --- */
.timeline-main {
  background-color: #ffffff;
  border: 1px solid #e5e0d8;
  padding: 36px;
  border-radius: 4px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.step-badge {
  background-color: #c5a059;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  letter-spacing: 1px;
}

.location-hint {
  font-size: 0.75rem;
  color: #777777;
}

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.arabic-sub {
  font-family: 'Amiri', serif;
  font-size: 1.2rem;
  color: #888888;
  margin-bottom: 8px;
}

.meta-location {
  font-size: 0.8rem;
  color: #666666;
  margin-bottom: 24px;
}

/* State Box */
.state-box {
  background-color: #fdfbf7;
  border: 1px solid #ede8de;
  padding: 14px 18px;
  font-size: 0.85rem;
  color: #555555;
  margin-bottom: 24px;
  border-radius: 2px;
}

/* Dua Box */
.dua-box {
  background-color: #121212;
  color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  margin-bottom: 28px;
  text-align: center;
}

.dua-label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: #c5a059;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

.arabic-dua {
  font-family: 'Amiri', serif;
  font-size: 1.35rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 12px;
}

.dua-translation {
  font-size: 0.78rem;
  color: #bbbbbb;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

/* Instructions */
.instructions-section {
  margin-bottom: 28px;
}

.section-heading {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: #111111;
  font-weight: 700;
  margin-bottom: 16px;
}

.instructions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.instructions-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #faf8f5;
  border: 1px solid #eae5dc;
  padding: 12px 16px;
  border-radius: 3px;
}

.instructions-list .num {
  background-color: #c5a059;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.instructions-list p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #333333;
  margin: 0;
}

/* Prohibitions Warning Box */
.warning-box {
  background-color: #fdf5f5;
  border: 1px solid #f5d3d3;
  padding: 18px 20px;
  border-radius: 3px;
  margin-bottom: 28px;
}

.warning-box h4 {
  color: #d93838;
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin: 0 0 12px 0;
}

.warning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.warning-grid ul {
  padding-left: 16px;
  margin: 0;
}

.warning-grid li {
  font-size: 0.8rem;
  color: #662222;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* Step Navigation */
.step-navigation {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #eae5dc;
}

.nav-btn {
  padding: 10px 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
}

.nav-btn.prev {
  background-color: #f0f0f0;
  color: #aaaaaa;
  cursor: not-allowed;
}

.nav-btn.next {
  background-color: #c5a059;
  color: #ffffff;
}

/* Bottom CTA Banner */
.timeline-bottom-banner {
  margin-top: 30px;
  background-color: #f3eee6;
  border: 1px solid #e0d8cc;
  padding: 24px 30px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin: 0 0 4px 0;
  color: #111111;
}

.banner-text p {
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
}

.btn-explore {
  background-color: #c5a059;
  color: #ffffff;
  padding: 12px 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
}

/* Responsive Grid */
@media (max-width: 900px) {
  .timeline-container {
    grid-template-columns: 1fr;
  }
  .warning-grid {
    grid-template-columns: 1fr;
  }
  .timeline-bottom-banner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}









@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.shop-section {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #f7f5ef;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #111111;
  box-sizing: border-box;
}

/* Top Search & Filter Container */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-color: #ffffff;
  padding: 12px 16px;
  border: 1px solid #e2ddd3;
  border-radius: 4px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dcd6cd;
  padding: 6px 12px;
  border-radius: 2px;
  flex: 1;
  min-width: 250px;
  background-color: #ffffff;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.8rem;
  color: #333333;
}

.search-icon {
  font-size: 0.85rem;
  color: #888888;
}

.filter-group, .category-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #666666;
}

.btn-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-btn, .cat-btn {
  background: transparent;
  border: 1px solid #dcd6cd;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #444444;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.filter-btn:hover, .cat-btn:hover {
  border-color: #aa8c55;
  color: #aa8c55;
}

.filter-btn.active, .cat-btn.active {
  background-color: #121212;
  color: #ffffff;
  border-color: #121212;
}

.cat-btn.active {
  background-color: #aa8c55;
  border-color: #aa8c55;
}

/* Category Filter Bar */
.category-bar {
  background-color: #ffffff;
  padding: 10px 16px;
  border: 1px solid #e2ddd3;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* Product Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

/* Product Card */
.product-card {
  background-color: #ffffff;
  border: 1px solid #e2ddd3;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

/* Image & Badges */
.card-image-wrapper {
  position: relative;
  height: 200px;
  background-color: #f0ede6;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-container {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 2px;
  width: fit-content;
}

.tag-gold {
  background-color: #aa8c55;
  color: #ffffff;
}

.tag-dark {
  background-color: #121212;
  color: #ffffff;
}

/* Card Content */
.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.brand-name {
  color: #777777;
  font-weight: 500;
}

.rating {
  color: #aa8c55;
  font-weight: 600;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px 0;
  color: #111111;
  height: 2.7em;
  overflow: hidden;
}

/* Specifications Box */
.specs-box {
  background-color: #fbf9f5;
  border: 1px solid #ebe5d9;
  padding: 10px 12px;
  border-radius: 3px;
  font-size: 0.72rem;
  color: #555555;
  margin-bottom: 18px;
}

.specs-box p {
  margin: 3px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Card Footer & Price */
.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f0ede6;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.current-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
}

.old-price {
  font-size: 0.75rem;
  color: #999999;
  text-decoration: line-through;
}

.btn-details {
  background-color: #aa8c55;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.btn-details:hover {
  background-color: #917543;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
}











@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.contact-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  background-color: #f9f8f3;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #111111;
  box-sizing: border-box;
}

/* Header Styles */
.contact-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.contact-header .sub-title {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-header .sub-title::before {
  content: "— ";
}

.contact-header .main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #111111;
  line-height: 1.2;
}

.contact-header .description {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* Main Layout Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 30px;
  align-items: start;
}

/* Left Card: Dark Info Card */
.info-card {
  background-color: #151515;
  border: 1px solid #a68a56;
  border-radius: 4px;
  padding: 28px 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.info-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.info-tag {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: #888888;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.company-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.online-status {
  background-color: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.online-status .dot {
  width: 6px;
  height: 6px;
  background-color: #25d366;
  border-radius: 50%;
}

/* Info Items List */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #2a2a2a;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-item .icon {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 2px;
}

.info-item h4 {
  font-size: 0.65rem;
  letter-spacing: 1.2px;
  color: #888888;
  margin: 0 0 4px 0;
  font-weight: 700;
}

.info-item p {
  font-size: 0.8rem;
  color: #dddddd;
  margin: 0;
  line-height: 1.4;
}

.info-item a {
  color: #ffffff;
  text-decoration: none;
}

/* Info Footer / WhatsApp */
.info-footer {
  padding-top: 20px;
}

.footer-tag {
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: #a68a56;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.btn-whatsapp {
  display: block;
  background-color: #25d366;
  color: #ffffff;
  text-align: center;
  padding: 12px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-whatsapp:hover {
  opacity: 0.9;
}

/* Right Card: Form Card */
.form-card {
  background-color: #ffffff;
  border: 1px solid #e5e0d8;
  border-radius: 4px;
  padding: 32px;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 24px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e0d8;
  color: #111111;
}

/* Form Controls */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #333333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dcd6cd;
  border-radius: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  color: #333333;
  outline: none;
  box-sizing: border-box;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #a68a56;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  cursor: pointer;
}

.select-wrapper::after {
  content: "▼";
  font-size: 0.6rem;
  color: #666666;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-group textarea {
  resize: vertical;
}

/* Submit Button */
.btn-submit {
  background-color: #a68a56;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 0.2s ease;
  margin-top: 6px;
}

.btn-submit:hover {
  background-color: #917543;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}







