/* ============================================
   Owanovin Ghana Limited - Main Stylesheet
   ============================================ */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Inter:wght@400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
    --navy:        #1a2e5a;
    --navy-light:  #243872;
    --navy-dark:   #111e3d;
    --gold:        #f0a500;
    --gold-light:  #f7c94b;
    --gold-dark:   #c98a00;
    --white:       #ffffff;
    --light-bg:    #f5f6fa;
    --text-dark:   #1a1a2e;
    --text-muted:  #6b7280;
    --text-light:  #9ca3af;
    --border:      #e5e7eb;
    --shadow:      0 4px 20px rgba(0,0,0,0.08);
    --shadow-md:   0 8px 30px rgba(0,0,0,0.12);
    --radius:      10px;
    --radius-lg:   16px;
    --transition:  all 0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    color: var(--text-dark);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.bg-light { background: var(--light-bg); }
.bg-navy  { background: var(--navy); }

/* ---- SECTION HEADER ---- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}
.section-header p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.7); }

.section-tag {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.section-tag-light {
    display: inline-block;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-cta { text-align: center; margin-top: 40px; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover { background: var(--light-bg); }
.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    padding: 0 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.nav-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-menu a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 8px 20px !important;
    border-radius: var(--radius) !important;
    font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
}

/* ---- HERO SECTION ---- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: rgba(240,165,0,0.06);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    background: rgba(240,165,0,0.04);
    border-radius: 50%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    opacity: 0.25;
}
.hero-content { position: relative; z-index: 1; max-width: 750px; }
.hero-tag {
    display: inline-block;
    background: rgba(240,165,0,0.15);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    border: 1px solid rgba(240,165,0,0.3);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-content h1 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
    min-height: 340px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    opacity: 0.06;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero-content h1 span { color: var(--gold); }
.page-hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}
.breadcrumb {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; }
.breadcrumb span { color: rgba(255,255,255,0.7); }

/* ---- TRUST STRIP ---- */
.trust-strip {
    background: var(--gold);
    padding: 20px;
}
.trust-strip .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item i { font-size: 26px; color: var(--navy); }
.trust-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
}
.trust-item span { font-size: 12px; color: var(--navy-light); }

/* ---- ABOUT SNIPPET ---- */
.about-snippet-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}
.about-snippet-image { position: relative; }
.about-img-placeholder {
    width: 100%;
    height: 380px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about-img-placeholder i { font-size: 100px; color: var(--gold); opacity: 0.3; }
.about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-badge strong {
    display: block;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}
.about-badge span { font-size: 11px; font-weight: 600; }
.about-snippet-text h2 { font-size: 2rem; margin-bottom: 16px; }
.about-snippet-text p { color: var(--text-muted); margin-bottom: 14px; }

/* ---- AFFORDABILITY BANNER ---- */
.affordability-banner {
    background: var(--light-bg);
    border-left: 5px solid var(--gold);
    padding: 32px 40px;
    border-radius: 0;
}
.affordability-banner .container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.afford-icon { font-size: 36px; color: var(--gold); flex-shrink: 0; }
.afford-text { flex: 1; }
.afford-text h3 { font-size: 1.3rem; margin-bottom: 6px; }
.afford-text p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ---- SERVICES GRID ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.service-icon {
    width: 52px; height: 52px;
    background: rgba(26,46,90,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.service-icon i { font-size: 22px; color: var(--navy); }
.service-card h3 { font-size: 1rem; margin-bottom: 8px; }
.service-card p  { font-size: 13px; color: var(--text-muted); }

/* ---- SERVICES FULL GRID ---- */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.service-full-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}
.service-full-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.service-full-icon {
    width: 56px; height: 56px;
    background: var(--navy);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.service-full-icon i { font-size: 24px; color: var(--gold); }
.service-full-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-full-body p  { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.service-enquire {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}
.service-enquire:hover { gap: 10px; color: var(--navy); }

/* ---- SERVICES INTRO ---- */
.services-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}
.services-intro-text h2 { font-size: 2rem; margin-bottom: 16px; }
.services-intro-text p  { color: var(--text-muted); margin-bottom: 14px; }
.services-intro-stats { display: flex; flex-direction: column; gap: 16px; }
.intro-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--light-bg);
    padding: 16px 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
}
.intro-stat i      { font-size: 24px; color: var(--navy); }
.intro-stat strong { font-size: 1.4rem; font-family: 'Montserrat', sans-serif; color: var(--navy); }
.intro-stat span   { font-size: 12px; color: var(--text-muted); display: block; }

/* ---- PROJECTS GRID ---- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.project-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    background: var(--white);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-card img,
.project-card video {
    width: 100%; height: 200px;
    object-fit: cover; display: block;
}
.project-video-thumb { position: relative; }
.play-icon {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.3);
}
.play-icon i {
    font-size: 36px; color: var(--white);
    background: var(--gold);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding-left: 4px;
}
.project-info { padding: 16px 18px; }
.project-info h3 { font-size: 1rem; margin-bottom: 6px; }
.project-info span { font-size: 13px; color: var(--text-muted); }
.project-info i { color: var(--gold); margin-right: 4px; }

/* ---- PROJECTS PAGE GRID ---- */
.projects-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}
.project-thumb-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
}
.project-thumb-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.project-thumb-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.project-thumb-wrap img,
.project-thumb-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.project-thumb-card:hover .project-thumb-wrap img,
.project-thumb-card:hover .project-thumb-wrap video { transform: scale(1.05); }
.video-thumb-wrap { position: relative; width: 100%; height: 100%; }
.video-play-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.25);
    display: flex; align-items: center; justify-content: center;
}
.video-play-overlay i {
    font-size: 32px; color: var(--white);
    background: var(--gold);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding-left: 4px;
}
.project-thumb-hover {
    position: absolute; inset: 0;
    background: rgba(26,46,90,0.7);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px; opacity: 0;
    transition: var(--transition);
    color: var(--white);
}
.project-thumb-hover i    { font-size: 28px; color: var(--gold); }
.project-thumb-hover span { font-size: 14px; font-weight: 600; }
.project-thumb-card:hover .project-thumb-hover { opacity: 1; }
.project-thumb-info { padding: 16px 18px; }
.project-thumb-info h3 { font-size: 1rem; margin-bottom: 6px; color: var(--text-dark); }
.project-location {
    font-size: 13px; color: var(--text-muted);
    display: flex; align-items: center; gap: 5px;
}
.project-location i { color: var(--gold); }

/* ---- PROJECTS EMPTY ---- */
.projects-empty { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.projects-empty i  { font-size: 60px; color: var(--border); margin-bottom: 20px; }
.projects-empty h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-dark); }
.projects-empty p  { margin-bottom: 24px; }

/* ---- OUR STORY ---- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}
.story-image { position: relative; }
.story-img-placeholder {
    width: 100%; height: 400px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
}
.story-img-placeholder i { font-size: 100px; color: var(--gold); opacity: 0.3; }
.story-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--gold); color: var(--navy);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.story-badge strong { display: block; font-size: 1.1rem; font-family: 'Montserrat', sans-serif; }
.story-badge span   { font-size: 11px; font-weight: 600; }
.story-text h2 { font-size: 2rem; margin-bottom: 16px; }
.story-text p  { color: var(--text-muted); margin-bottom: 14px; }
.story-stats { display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.stat-box {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 16px 24px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    flex: 1; min-width: 100px;
}
.stat-box strong {
    display: block;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
}
.stat-box span { font-size: 12px; color: var(--text-muted); }

/* ---- FOUNDER ---- */
.founder-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}
.founder-text h2 { font-size: 2rem; margin-bottom: 8px; }
.founder-title { color: var(--gold-dark); font-size: 14px; font-weight: 600; margin-bottom: 20px; display: block; }
.founder-text p  { color: var(--text-muted); margin-bottom: 14px; }
.founder-text em { color: var(--navy); font-style: italic; font-weight: 600; }
.founder-image { position: relative; }
.founder-img-placeholder {
    width: 100%; height: 360px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
}
.founder-img-placeholder i { font-size: 90px; color: var(--gold); opacity: 0.3; }
.founder-name-tag {
    position: absolute;
    bottom: -16px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold); color: var(--navy);
    padding: 10px 24px;
    border-radius: 30px;
    text-align: center;
    white-space: nowrap;
    box-shadow: var(--shadow);
}
.founder-name-tag strong { display: block; font-size: 14px; font-weight: 700; }
.founder-name-tag span   { font-size: 11px; }

/* ---- MISSION ---- */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.mission-icon {
    width: 64px; height: 64px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.mission-icon i  { font-size: 26px; color: var(--gold); }
.mission-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.mission-card p  { font-size: 14px; color: var(--text-muted); }

/* ---- AFFORDABILITY SECTION ---- */
.affordability-section { padding: 80px 0; }
.afford-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.afford-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: var(--transition);
}
.afford-card:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }
.afford-card .afford-icon { font-size: 36px; color: var(--gold); margin-bottom: 16px; }
.afford-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.afford-card p  { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ---- WHY US ---- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.why-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    background: var(--white);
}
.why-item:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.why-item > i   { font-size: 22px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.why-item h4 { font-size: 1rem; margin-bottom: 6px; }
.why-item p  { font-size: 13px; color: var(--text-muted); }

/* ---- CTA SECTION ---- */
.cta-section {
    background: var(--navy);
    padding: 80px 20px;
    text-align: center;
}
.cta-section h2 { font-size: 2.2rem; color: var(--white); margin-bottom: 12px; }
.cta-section p  { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer { background: #111827; padding: 60px 20px 20px; }
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
    height: 52px; width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-links h4,
.footer-contact h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-links ul li,
.footer-contact ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.5); font-size: 14px; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact ul li {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.5); font-size: 14px;
}
.footer-contact ul li i { color: var(--gold); font-size: 14px; }
.footer-contact ul li a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact ul li a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    text-align: center;
    color: rgba(255,255,255,0.25);
    font-size: 13px;
}

/* ---- FLASH MESSAGES ---- */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info    { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ---- CONTACT PAGE ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.contact-card-icon {
    width: 48px; height: 48px;
    background: var(--navy);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-card-icon i { font-size: 20px; color: var(--gold); }
.contact-card-icon.whatsapp { background: #25d366; }
.contact-card-icon.whatsapp i { color: var(--white); }
.contact-card-icon.email { background: var(--navy-light); }
.contact-card-icon.email i { color: var(--gold); }
.contact-card-icon.location { background: var(--gold); }
.contact-card-icon.location i { color: var(--navy); }
.contact-card-body h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-card-body p  { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.gps-address {
    display: inline-block;
    background: var(--light-bg);
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.required { color: var(--gold-dark); }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26,46,90,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-full { width: 100%; justify-content: center; }

.form-success { text-align: center; padding: 20px 0; }
.success-icon { font-size: 56px; color: #25d366; margin-bottom: 16px; }
.form-success h4 { font-size: 1.4rem; margin-bottom: 10px; }
.form-success > p { color: var(--text-muted); margin-bottom: 24px; }
.success-actions {
    display: flex; gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.notify-note { font-size: 12px; color: var(--text-light); }

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 992px) {
    .about-snippet-grid,
    .story-grid,
    .founder-grid,
    .services-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-snippet-image,
    .founder-image { order: -1; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .page-hero-content h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.6rem; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px; left: 0; right: 0;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        text-align: center;
    }
    .nav-menu.open { display: flex; }
    .nav-toggle { display: block; }

    .trust-strip .container { justify-content: center; gap: 20px; }
    .footer-container { grid-template-columns: 1fr; gap: 32px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .affordability-banner .container { flex-direction: column; text-align: center; }

    .about-img-placeholder,
    .story-img-placeholder,
    .founder-img-placeholder { height: 260px; }
    .about-badge, .story-badge { right: 10px; bottom: -14px; }

    .hero-overlay { background-position: 70% top; }
    .page-hero-overlay { background-position: top right; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 24px 18px; }
    .nav-logo img { height: 60px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-buttons    { flex-direction: column; align-items: center; }
    .btn             { width: 100%; justify-content: center; }
    .story-stats     { flex-direction: column; }
}

/* ============================================
   PROJECT PAGE
   ============================================ */

.project-page-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

/* Media Gallery */
.media-main {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy);
    aspect-ratio: 16/9;
}
.media-main img,
.media-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Thumbnails */
.media-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.media-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: var(--transition);
    flex-shrink: 0;
}
.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.media-thumb.active { border-color: var(--gold); }
.media-thumb:hover  { border-color: var(--navy); }
.thumb-video-icon {
    width: 100%; height: 100%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}
.thumb-video-icon i { color: var(--gold); font-size: 18px; }

/* Project Details */
.project-details-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.project-detail-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}
.project-detail-location i { color: var(--gold); }

.project-description {
    margin-bottom: 28px;
}
.project-description h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--navy);
}
.project-description p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Share Section */
.project-share {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
}
.project-share h4 {
    font-size: 1rem;
    margin-bottom: 14px;
}
.share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}
.copy-btn {
    background: var(--navy);
    color: var(--white);
}
.copy-btn:hover { background: var(--navy-light); }
.whatsapp-share { background: #25d366; color: var(--white); }
.whatsapp-share:hover { background: #1ebe5d; }
.facebook-share { background: #1877f2; color: var(--white); }
.facebook-share:hover { background: #0d65d9; }
.twitter-share { background: #1da1f2; color: var(--white); }
.twitter-share:hover { background: #0d8fd9; }

.share-url {
    font-size: 11px;
    color: var(--text-light);
    word-break: break-all;
    margin-bottom: 6px;
}
.copy-feedback {
    display: none;
    font-size: 13px;
    color: #25d366;
    font-weight: 600;
}
.copy-feedback i { margin-right: 4px; }

/* Project CTA Box */
.project-cta-box {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}
.project-cta-box h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.project-cta-box p {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin-bottom: 16px;
}
.project-cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .project-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .share-buttons { flex-direction: column; }
    .share-btn { justify-content: center; }
}

/* ============================================
   404 PAGE
   ============================================ */

.error-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 20px 80px;
}
.error-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    opacity: 0.06;
}
.error-content { position: relative; z-index: 1; max-width: 600px; }
.error-code {
    font-family: 'Montserrat', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.9;
}
.error-content h1 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
}
.error-content p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.7;
}
.error-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.error-contact p {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    margin-bottom: 14px;
}
.error-contact-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 480px) {
    .error-code { font-size: 5rem; }
    .error-content h1 { font-size: 1.5rem; }
    .error-links { flex-direction: column; align-items: center; }
}