/* ========================================
   LORIPRESTIGE - CASION STYLE REDESIGN
   Light: White + Dark Navy #1b2a3a + Orange #b8952a
   ======================================== */

:root {
    --primary:        #1b2a3a;
    --primary-light:  #253649;
    --accent:         #b8952a;
    --accent-light:   #d4ae48;
    --accent-dark:    #9c7e1e;
    --white:          #ffffff;
    --off-white:      #f5f7f9;
    --light-gray:     #edf0f5;
    --text-dark:      #1b2a3a;
    --text-body:      #5a6a7a;
    --text-light:     #8a9bb0;
    --border:         #dde3ed;

    /* Legacy aliases (kept for any remaining refs) */
    --gold:           #b8952a;
    --gold-light:     #d4ae48;
    --gold-dark:      #9c7e1e;
    --gold-glow:      rgba(184,149,42,0.3);
    --black:          #ffffff;
    --dark:           #1b2a3a;
    --dark-gray:      #f5f7f9;
    --medium-gray:    #edf0f5;
    --light-gray-old: #5a6a7a;

    --font-main:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;

    --section-padding: clamp(70px, 10vh, 120px);
    --container-padding: clamp(20px, 5vw, 70px);
    --ease-out-expo: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease: cubic-bezier(0.25, 1, 0.5, 1);

    --shadow-sm: 0 2px 15px rgba(27,42,58,0.07);
    --shadow-md: 0 8px 30px rgba(27,42,58,0.11);
    --shadow-lg: 0 20px 60px rgba(27,42,58,0.14);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--accent); color: var(--white); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Hide cursor glow */
.cursor-glow { display: none !important; }

/* ==============================
   TOP BAR
   ============================== */
.top-bar {
    background: var(--primary);
    padding: 9px 0;
    font-size: 0.82rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 28px;
}

.top-bar-info a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.3s;
}

.top-bar-info a:hover { color: var(--accent); }

.top-bar-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.top-bar-social a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.top-bar-social a:hover { color: var(--accent); }

/* ==============================
   NAVBAR
   ============================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(27,42,58,0.08);
    transition: box-shadow 0.3s var(--ease);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

.navbar.scrolled {
    padding: 0;
    background: var(--white);
    box-shadow: 0 4px 30px rgba(27,42,58,0.14);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 78px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-img-footer {
    height: 48px;
    filter: brightness(0) invert(1); /* white version on dark footer */
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 4px;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,149,42,0.38);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ==============================
   HERO SECTION
   ============================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 0;
}

.hero-bg          { display: none; }
.hero-gradient-orb { display: none; }
.hero-grid-pattern { display: none; }

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    z-index: 0;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(27,42,58,0.92) 0%,
        rgba(27,42,58,0.82) 40%,
        rgba(27,42,58,0.45) 70%,
        rgba(27,42,58,0.15) 100%
    );
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
    min-height: 92vh;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(184,149,42,0.18);
    border: 1px solid rgba(184,149,42,0.5);
    border-radius: 4px;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero-badge span {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title { margin-bottom: 24px; }

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
}

.title-accent { color: var(--white); }
.dot { color: var(--accent); }

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.93rem;
    border-radius: 4px;
    border: 2px solid var(--accent);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184,149,42,0.40);
}

.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.93rem;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.55);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}

.btn-large { padding: 17px 44px; font-size: 1rem; }

/* Hero Clients */
.hero-clients {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatars { display: flex; }

.avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--white);
    margin-left: -10px;
}

.avatar:first-child { margin-left: 0; }

.client-info { display: flex; flex-direction: column; gap: 3px; }
.client-rating { display: flex; align-items: center; gap: 8px; }
.stars  { color: var(--accent); font-size: 0.85rem; }
.rating { color: var(--accent); font-weight: 700; font-size: 0.85rem; }
.client-count { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

/* Hero Right Image */
.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hero-image-wrapper { position: relative; }

.hero-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.hero-image-container:hover .hero-image { transform: scale(1.04); }

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.hero-image-overlay { display: none; }

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 8px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.card-experience {
    bottom: -16px;
    right: -24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: var(--white);
}

.card-icon { font-size: 1.3rem; }

.card-content {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.card-number {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1;
}

.card-label {
    font-size: 0.73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.card-rating {
    top: 24px;
    left: -34px;
    animation-delay: 1s;
    background: var(--white);
}

.card-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 2px; }
.card-text  { color: var(--text-dark); font-weight: 600; font-size: 0.78rem; }

/* ==============================
   FEATURE BOXES (below hero)
   ============================== */
.features-section {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 20;
    margin-top: -72px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(27,42,58,0.06);
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(27,42,58,0.12);
}

.feature-box-icon-wrap {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box-icon { 
    color: var(--accent); 
    width: 28px;
    height: 28px;
}

.feature-box-content {
    display: flex;
    flex-direction: column;
}

.feature-box-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-box-desc {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ==============================
   STATS BANNER
   ============================== */
.stats-banner {
    padding: 60px 0;
    background: var(--off-white);
    border-top: none;
    border-bottom: none;
}

.stats-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(27,42,58,0.04);
    padding: 30px 0;
}

.stat {
    text-align: center;
    padding: 20px 60px;
    border-right: 1px solid var(--border);
    flex: 1;
}

.stat:last-child { border-right: none; }

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider { display: none; }

/* ==============================
   SECTION COMMONS
   ============================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    margin-bottom: 14px;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.section-label::before {
    content: '';
    width: 22px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.highlight { color: var(--accent); }

.section-desc {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.85;
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-label { justify-content: center; }
.section-header .section-desc  { margin: 0 auto; }

/* ==============================
   ABOUT SECTION
   ============================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 20px;
    transform: scale(1.03);
    transform-origin: left center;
}

.about-image-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-md);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    z-index: 5;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-image-secondary {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3.5 / 4.5;
    margin-top: 60px;
    margin-left: -50px;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    position: relative;
    z-index: 2;
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 28px;
}

.about-features {
    list-style: none;
    margin-bottom: 36px;
}

.about-features li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 26px;
    height: 26px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.72rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.feature-text span {
    color: var(--text-body);
    font-size: 0.87rem;
}

/* ==============================
   SERVICES SECTION
   ============================== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0;
    transition: all 0.35s var(--ease);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::before { display: none; }

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* Image banner at top of each card */
.service-card-image {
    width: 100%;
    height: 165px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-image svg {
    opacity: 0.15;
    color: var(--white);
    width: 80px;
    height: 80px;
}

/* Card body */
.service-card-body {
    padding: 46px 26px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Orange icon bubble sitting between image and body */
.service-icon-small {
    position: absolute;
    top: 142px;
    right: 22px;
    width: 46px;
    height: 46px;
    background: var(--white);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    z-index: 2;
    transition: all 0.3s;
}

.service-card:hover .service-icon-small {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Hide original elements */
.service-number { display: none; }
.service-icon   { display: none; }

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-desc {
    color: var(--text-body);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 16px;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: auto;
    transition: gap 0.3s;
}

.service-link:hover { gap: 12px; }

.service-link .arrow { font-size: 1.1rem; transition: transform 0.3s; }
.service-card:hover .service-link .arrow { transform: translateX(3px); }

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.service-card.featured { border-color: var(--accent); }

/* ==============================
   PROCESS / HOW WE WORK
   ============================== */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 20px;
}

.process-grid::after {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 52px;
    height: 52px;
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    margin: 0 auto 28px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.process-step:hover .process-number {
    background: var(--accent);
    color: var(--white);
}

.process-step-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    color: var(--accent);
}

.process-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 0.87rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ==============================
   MARQUEE — hidden (replaced)
   ============================== */
.marquee-section { display: none; }

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.35s var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.testimonial-rating { color: var(--accent); font-size: 1rem; margin-bottom: 16px; }

.testimonial-text {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 24px;
    font-style: normal;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
    width: 46px;
    height: 46px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.author-info { display: flex; flex-direction: column; }
.author-name { font-weight: 600; font-size: 0.93rem; color: var(--text-dark); }
.author-role { color: var(--text-light); font-size: 0.8rem; }

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: var(--section-padding) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg   { display: none; }
.cta-orb  { display: none; }
.cta-orb-1 { display: none; }
.cta-orb-2 { display: none; }

.cta-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184,149,42,0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    max-width: 560px;
    margin: 0 auto 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==============================
   CONTACT SECTION
   ============================== */
.contact-section {
    padding: 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    gap: 0;
    align-items: stretch;
}

.contact-info {
    padding: 80px 60px;
    background: var(--off-white);
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 36px;
}

.contact-details { margin-bottom: 32px; }

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(184,149,42,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.contact-value {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-dark);
}

.social-links { display: flex; gap: 12px; flex-wrap: wrap; }

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    background: var(--white);
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Hide old image panel */
.contact-image { display: none; }

/* Contact Form Side */
.contact-form-side {
    padding: 80px 60px;
    background: var(--primary);
}

.contact-form-side .section-label { color: var(--accent); }
.contact-form-side .section-title { color: var(--white); }

.contact-form { margin-top: 28px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 0;
}

.form-group { margin-bottom: 14px; }

.form-group label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 7px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.88rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group select { cursor: pointer; appearance: none; }
.form-group select option { background: var(--primary); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 96px; }

/* ==============================
   FOOTER
   ============================== */
.footer {
    padding: 70px 0 32px;
    background: var(--primary);
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-top: 20px;
    max-width: 280px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

.footer-newsletter p {
    color: rgba(255,255,255,0.55);
    font-size: 0.87rem;
    margin-bottom: 14px;
}

.newsletter-form { display: flex; gap: 8px; }

.newsletter-form input {
    flex: 1;
    padding: 11px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px;
    color: var(--white);
    font-size: 0.87rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--accent); }

.newsletter-form button {
    padding: 11px 18px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover { background: var(--accent-dark); }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.83rem; }

.footer-legal { display: flex; gap: 16px; align-items: center; }
.footer-legal span { color: rgba(255,255,255,0.25); }

.footer-legal a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.83rem;
    transition: color 0.3s;
}

.footer-legal a:hover { color: var(--accent); }

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: repeat(2, 1fr); }
    .process-grid  { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::after { display: none; }
}

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 0; }
    .hero-right   { display: none; }
    .about-grid   { grid-template-columns: 1fr; gap: 50px; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; border-radius: 0; }
    .features-section { margin-top: 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-side { padding: 60px 40px; }
    .contact-info  { padding: 60px 40px; }
}

@media (max-width: 768px) {
    .nav-links  { display: none; }
    .nav-cta    { display: none; }
    .hamburger  { display: flex; }
    .top-bar-info { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-wrapper { flex-direction: column; }
    .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 24px 40px; flex: none; }
    .stat:last-child { border-bottom: none; }
    .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
    .hero-cta      { flex-direction: column; align-items: flex-start; }
    .cta-buttons   { flex-direction: column; align-items: center; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .process-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
    .form-row      { grid-template-columns: 1fr; }
    .about-images  { grid-template-columns: 1fr; }
    .about-image-secondary { margin-top: 0; }
}

@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 60px 0; min-height: auto; }
}

/* Mobile nav open */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 24px 32px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    gap: 20px;
    border-top: 2px solid var(--accent);
}

/* Alert messages for the PHP form */
.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
