/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    --color-primary: #dfb76c;        /* Premium Rich Gold */
    --color-primary-hover: #d2a95c;  /* Slightly darker gold for hover states */
    --color-dark-bg: #121212;        /* Dark background for sections / bars */
    --color-white: #ffffff;          /* Pure white */
    --color-text-light: #ffffff;     /* White text */
    --color-text-muted: #cccccc;     /* Muted body text */
    --color-border-translucent: rgba(255, 255, 255, 0.15);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', 'Inter', system-ui, sans-serif;
    
    --transition-speed: 0.3s;
    --transition-curve: cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: all var(--transition-speed) var(--transition-curve);
}

/* ==========================================
   BASE RESETS & DECORATION
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: #0c0c0c;
    color: var(--color-text-light);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   BUTTONS SYSTEM
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Gold button */
.btn-gold {
    background-color: var(--color-primary);
    color: #121212;
    border: 1px solid var(--color-primary);
}

.btn-gold:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 183, 108, 0.3);
}

.btn-gold:active {
    transform: translateY(0);
}

/* Outline button */
.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: #121212;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-outline:active {
    transform: translateY(0);
}

/* ==========================================
   NAVBAR STYLING
   ========================================== */
.navbar-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

/* Add background on scroll */
.navbar-header.scrolled {
    position: fixed;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo container style matching mockup */
.logo-box {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-img {
    height: 121px;
    width: auto;
    object-fit: contain;
    margin-top: -29px;
    margin-bottom: -30px;
}

/* Nav Menu */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-white);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Underline active element */
.nav-link.active {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

/* Navbar Toggle for Mobile */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
    padding: 5px;
}

.hamburger-bar {
    width: 28px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

/* Mobile Toggle active animation */
.mobile-nav-toggle.open .hamburger-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-nav-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.open .hamburger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.65) 45%,
        rgba(0, 0, 0, 0.3) 100%
    ), url('hero.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding-top: 8rem; /* Space for absolute navbar */
}

/* Inner Container */
.hero-container {
    width: 90%;
    max-width: 1300px;
    margin: auto auto;
    padding: 3rem 0;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* MPA Badge style */
.association-badge {
    display: flex;
    align-items: center;
}

.association-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-transform: uppercase;
}

/* Title Font: Playfair Display */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.gold-text {
    color: var(--color-primary);
}

/* Subtitle */
.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 540px;
    line-height: 1.6;
}

/* Features checkmarks list grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
    max-width: 400px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.check-icon {
    color: var(--color-primary);
    font-size: 0.9rem;
    border: 1.5px solid var(--color-primary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero CTA action buttons styling */
.cta-actions {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
}

.btn-hero {
    min-width: 180px;
}

/* ==========================================
   INFO CONTACT BAR (HERO FOOTER)
   ========================================== */
.info-contact-bar {
    width: 100%;
    background-color: rgba(13, 13, 13, 0.95);
    border-top: 1px solid var(--color-border-translucent);
    padding: 1.25rem 0;
}

.info-bar-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
}

.info-item:hover {
    color: var(--color-primary);
}

.info-icon {
    color: var(--color-primary);
    font-size: 1rem;
}

.info-text {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.info-divider {
    width: 1px;
    height: 24px;
    background-color: var(--color-border-translucent);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    background: linear-gradient(135deg, #e5c158 0%, #dfb76c 100%);
    padding: 3rem 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.stats-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    justify-content: center;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon-wrapper {
    color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.stat-item:hover .stat-icon-wrapper {
    transform: scale(1.1);
}

.stat-svg-icon {
    width: 46px;
    height: 46px;
    stroke: #121212;
    stroke-width: 1.5;
}

.stat-text-wrapper {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: #121212;
    line-height: 1;
    margin-bottom: 0.15rem;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #262626;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(18, 18, 18, 0.12);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    background-color: #ffffff;
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.about-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-content-column {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: -0.5rem;
    display: block;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: var(--color-dark-bg);
    line-height: 1.25;
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-paragraph {
    font-size: 1rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.7;
}

.about-paragraph strong {
    color: #121212;
    font-weight: 600;
}

.about-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2.5rem;
    margin-top: 1.25rem;
}

.benefit-item-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: var(--transition-smooth);
}

.benefit-item-card:hover {
    transform: translateX(6px);
}

.benefit-icon {
    color: var(--color-primary);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(223, 183, 108, 0.15);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.benefit-item-card:hover .benefit-icon {
    background-color: var(--color-primary);
    color: #121212;
}

.benefit-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c2c2c;
    letter-spacing: 0.01em;
}

.about-image-column {
    flex: 0.9;
    display: flex;
    justify-content: center;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 8px;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-image-accent {
    bottom: -10px;
    right: -10px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    background-color: #f7f7fa;
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.services-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
}

.services-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: var(--color-dark-bg);
    line-height: 1.25;
}

.services-slider-container {
    position: relative;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

.services-swiper {
    padding-bottom: 3.5rem;
    overflow: hidden;
}

.services-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1.5px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(223, 183, 108, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-card-img-box {
    position: relative;
    height: 210px;
    overflow: hidden;
    border-bottom: 2.5px solid var(--color-primary);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-img {
    transform: scale(1.06);
}

.service-card-icon-box {
    position: absolute;
    top: 186px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 2.5px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121212;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon-box {
    background-color: #121212;
    color: var(--color-primary);
    transform: translateX(-50%) rotate(360deg) scale(1.05);
}

.service-card-body {
    padding: 3rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.service-card-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-dark-bg);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.service-card-list li {
    font-size: 0.92rem;
    font-weight: 500;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-card-list li i {
    color: var(--color-primary);
    font-size: 0.78rem;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Custom Swiper Bullet styles */
.services-swiper .swiper-pagination-bullet {
    background-color: #cccccc;
    opacity: 0.6;
    width: 8px;
    height: 8px;
    transition: var(--transition-smooth);
}

.services-swiper .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* Custom Swiper Buttons styles */
.services-slider-container .swiper-button-prev,
.services-slider-container .swiper-button-next {
    color: #121212;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.services-slider-container .swiper-button-prev:hover,
.services-slider-container .swiper-button-next:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #121212;
    transform: scale(1.05);
}

.services-slider-container .swiper-button-prev::after,
.services-slider-container .swiper-button-next::after {
    font-size: 1.15rem;
    font-weight: 800;
}

.services-slider-container .swiper-button-prev {
    left: 0;
}

.services-slider-container .swiper-button-next {
    right: 0;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-choose-section {
    background-color: #121212;
    padding: 5rem 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why-choose-header {
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.why-choose-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-white);
    text-transform: uppercase;
}

.why-choose-container {
    width: 90%;
    max-width: 1300px;
    margin: 3.5rem auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    flex: 1;
    transition: var(--transition-smooth);
}

.why-item:hover {
    transform: translateY(-4px);
}

.why-icon-box {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.why-item:hover .why-icon-box {
    transform: scale(1.1);
}

.why-svg-icon {
    width: 36px;
    height: 36px;
    stroke: var(--color-primary);
    stroke-width: 1.5;
}

.why-text-box {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.why-item-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-white);
    text-transform: uppercase;
}

.why-item-desc {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.why-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    align-self: center;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.projects-section {
    background-color: #ffffff;
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.projects-header {
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.projects-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: var(--color-dark-bg);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.projects-filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2.5rem auto 3.5rem auto;
    width: 90%;
    max-width: 1100px;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #121212;
    background-color: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: #121212;
}

.filter-btn.active {
    background-color: #121212;
    border-color: #121212;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    opacity: 0;
    z-index: 10;
    transition: var(--transition-smooth);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.project-overlay-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
}

.project-overlay-icon {
    color: var(--color-white);
    font-size: 1.15rem;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    transition: var(--transition-smooth);
}

.project-overlay-icon:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #121212;
    transform: scale(1.05);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    background: linear-gradient(135deg, #eed28a 0%, #dfb76c 40%, #cba254 100%);
    padding: 6rem 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1), 0 4px 30px rgba(0, 0, 0, 0.1);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: #121212;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.testimonials-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.stars-row {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.stars-row i {
    color: #dfb76c; /* Match premium gold */
    font-size: 1rem;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: #666666;
    letter-spacing: 0.02em;
}

/* ==========================================
   OUR PROCESS SECTION
   ========================================== */
.process-section {
    background-color: #fcfcfd; /* Very clean, light off-white background */
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: var(--color-dark-bg);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.process-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.process-line {
    position: absolute;
    top: 35px; /* Middle height of the circle (70px / 2) */
    left: 8%;
    right: 8%;
    height: 2px;
    border-top: 2px dashed rgba(18, 18, 18, 0.15); /* Subtle dark gray dashed line as in design */
    z-index: 1;
    transform-origin: left center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    gap: 1.5rem;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-primary); /* Gold filled circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(223, 183, 108, 0.3);
    transition: var(--transition-smooth);
}

.process-step:hover .step-number-box {
    transform: scale(1.1);
    background-color: var(--color-primary-hover);
    box-shadow: 0 6px 20px rgba(223, 183, 108, 0.5);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-hover); /* Gold title text */
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    min-height: 2.2rem; /* Keep titles aligned when wrapping */
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* ==========================================
   CONTACT & QUOTE SECTION
   ========================================== */
.contact-section {
    background-color: #f7f7fa;
    padding: 6rem 0 0 0; /* Align with bottom banner edge */
    position: relative;
    z-index: 1;
}

.contact-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto 6rem auto;
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Info Sidebar */
.contact-info-sidebar {
    flex: 0.8;
    background-color: #121212; /* Charcoal dark background */
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.contact-sidebar-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary); /* Gold header */
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.detail-icon {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #e0e0e0;
}

.detail-text a {
    transition: var(--transition-smooth);
}

.detail-text a:hover {
    color: var(--color-primary);
}

.detail-text strong {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.sidebar-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 2.5rem 0;
}

.payment-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.payment-item {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-item i {
    color: var(--color-primary);
    font-size: 0.95rem;
}

/* Quote Form Box */
.contact-quote-form-box {
    flex: 1.2;
    padding: 3.5rem 3.5rem;
    background-color: #ffffff;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark-bg);
    margin-bottom: 2rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.25rem;
    width: 100%;
}

.triple-col {
    grid-template-columns: repeat(3, 1fr);
}

.single-col {
    grid-template-columns: 1fr;
}

.form-group {
    position: relative;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #333333;
    background-color: #fcfcfd;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    outline: none;
    transition: var(--transition-smooth);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(223, 183, 108, 0.15);
}

/* Style select dropdown arrow styling */
.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888888;
    pointer-events: none;
    font-size: 0.95rem;
}

.quote-form select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.5rem;
    color: #666666;
    cursor: pointer;
}

.quote-form select:invalid,
.quote-form select option[value=""] {
    color: #888888;
}

.quote-form textarea {
    resize: vertical;
}

.form-submit {
    margin-top: 0.5rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.95rem;
}

/* CTA Bottom Banner */
.cta-bottom-banner {
    background: linear-gradient(135deg, #eed28a 0%, #dfb76c 40%, #cba254 100%);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-banner-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-banner-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-logo-badge {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.cta-badge-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.cta-banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: #121212;
}

.cta-banner-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #2c2c2c;
    font-weight: 500;
}

.cta-banner-right {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-black-cta {
    background-color: #121212;
    color: #ffffff;
    border: 1px solid #121212;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-black-cta i {
    color: var(--color-primary); /* Gold icons inside buttons */
    font-size: 0.92rem;
}

.btn-black-cta:hover {
    background-color: #262626;
    border-color: #262626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer-section {
    background-color: #0d0d0d; /* Matching dark theme footer */
    padding: 6rem 0 0 0;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto 4rem auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Brand Col */
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: 0.05em;
}

.footer-brand-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #999999;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 0.85rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition-smooth);
    font-size: 0.92rem;
}

.footer-socials a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Titles */
.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-primary); /* Gold header */
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
}

/* Lists */
.footer-links-list,
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-list a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #b3b3b3;
    transition: var(--transition-smooth);
}

.footer-links-list a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #b3b3b3;
}

.footer-contact-list li i {
    color: var(--color-primary);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-contact-list a {
    transition: var(--transition-smooth);
}

.footer-contact-list a:hover {
    color: var(--color-primary);
}

/* Copyright Bar */
.footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.75rem 0;
    text-align: center;
}

.copyright-container p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #666666;
    letter-spacing: 0.02em;
}
/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

/* Laptop & Desktop adjustments */
@media (max-width: 1100px) {
    .info-bar-container {
        gap: 2rem;
    }
}

/* Tablet view */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none; /* Hide top CTA in mobile header */
    }
    
    /* Navigation drawer menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(12px);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2.25rem;
    }
    
    .nav-link {
        font-size: 1.05rem;
    }
    
    .hero-section {
        background-position: center; /* Center bg on mobile/tablet */
    }

    .info-contact-bar {
        padding: 1.5rem 0;
    }
    
    .info-bar-container {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .info-divider {
        display: none; /* Hide dividers when items wrap */
    }
    
    .info-item {
        width: 100%;
        justify-content: center;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        justify-content: center;
    }

    .about-container {
        flex-direction: column;
        gap: 3.5rem;
        padding: 4.5rem 0;
    }

    .about-content-column {
        width: 100%;
    }

    .about-image-column {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .services-slider-container {
        padding: 0 2rem;
    }

    .why-choose-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    .why-divider {
        display: none;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Process responsive tablet vertical flow */
    .process-line {
        top: 0;
        bottom: 0;
        left: 35px;
        right: auto;
        width: 2px;
        height: 100%;
        border-top: none;
        border-left: 2px dashed rgba(18, 18, 18, 0.15);
        transform-origin: top center;
    }

    .process-steps {
        flex-direction: column;
        gap: 3rem;
    }

    .process-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        gap: 2rem;
    }

    .step-number-box {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-content {
        align-items: flex-start;
        padding-top: 0.5rem;
    }

    .step-title {
        min-height: auto;
        margin-bottom: 0.5rem;
        justify-content: flex-start;
        text-align: left;
    }

    .step-desc {
        text-align: left;
        max-width: 100%;
        margin: 0;
    }

    /* Contact Responsive Tablet overrides */
    .contact-container {
        flex-direction: column;
        margin-bottom: 4.5rem;
    }

    .contact-info-sidebar {
        padding: 3rem 2.5rem;
    }

    .contact-quote-form-box {
        padding: 3rem 2.5rem;
    }

    .triple-col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-banner-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .cta-banner-left {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Footer Responsive Tablet overrides */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Mobile view */
@media (max-width: 576px) {
    .navbar-header {
        padding: 1rem 0;
    }
    
    .logo-img {
        height: 94px;
        margin-top: -23px;
        margin-bottom: -23px;
    }

    .hero-section {
        padding-top: 6rem;
    }
    
    .hero-content {
        gap: 1.25rem;
    }

    .hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-hero {
        width: 100%;
    }
    
    .info-text {
        font-size: 0.82rem;
    }

    .stats-section {
        padding: 2.5rem 0;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .stat-item {
        justify-content: flex-start;
        max-width: 260px;
        margin: 0 auto;
    }

    .stat-number {
        font-size: 2.3rem;
    }

    .stat-svg-icon {
        width: 38px;
        height: 38px;
    }

    .about-section {
        padding: 4.5rem 0;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-image-accent {
        bottom: -10px;
        right: -10px;
    }

    .services-section {
        padding: 4.5rem 0;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .services-slider-container {
        padding: 0;
    }

    .services-slider-container .swiper-button-prev,
    .services-slider-container .swiper-button-next {
        display: none;
    }

    .services-swiper {
        padding-bottom: 2.5rem;
    }

    .why-choose-section {
        padding: 4rem 0;
    }

    .why-choose-title {
        font-size: 1.4rem;
        letter-spacing: 0.08em;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .why-item {
        max-width: 300px;
        margin: 0 auto;
    }

    .why-svg-icon {
        width: 32px;
        height: 32px;
    }

    .projects-section {
        padding: 4.5rem 0;
    }

    .projects-filter-bar {
        margin: 2rem auto 2.5rem auto;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.72rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .project-card {
        aspect-ratio: 4/3;
        max-width: 380px;
        margin: 0 auto;
    }

    .testimonials-section {
        padding: 4.5rem 0;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        max-width: 380px;
        margin: 0 auto;
    }

    /* Process responsive mobile styling */
    .process-section {
        padding: 4.5rem 0;
    }

    .process-header {
        margin-bottom: 3.5rem;
    }

    .process-line {
        left: 30px;
    }

    .process-steps {
        gap: 2.5rem;
    }

    .step-number-box {
        width: 60px;
        height: 60px;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .process-step {
        gap: 1.25rem;
    }

    .step-title {
        font-size: 0.82rem;
    }

    .step-desc {
        font-size: 0.85rem;
    }

    /* Contact Responsive Mobile overrides */
    .contact-container {
        border-radius: 0; /* Full width bleeding on small phones */
        width: 100%;
        margin-bottom: 3.5rem;
    }

    .contact-info-sidebar {
        padding: 2.5rem 1.5rem;
    }

    .contact-quote-form-box {
        padding: 2.5rem 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .cta-bottom-banner {
        padding: 3rem 0;
    }

    .cta-banner-title {
        font-size: 1.35rem;
    }

    .cta-banner-desc {
        font-size: 0.85rem;
    }

    .cta-banner-right {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }

    .btn-black-cta {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }

    /* Footer Responsive Mobile overrides */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-logo-row {
        justify-content: center;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-list li {
        justify-content: center;
    }
}
