/* ============================================
   ORO OIL GHANA - Complete Styles (FULLY REVISED)
   ============================================ */

:root {
    --brand-red: #8b0000;
    --brand-red-dark: #5c0000;
    --brand-red-light: #a81a1a;
    --brand-gold: #b8860b;
    --brand-gold-light: #d4a843;
    --brand-white: #ffffff;
    --brand-off-white: #f8f5f0;
    --brand-charcoal: #1a1a1a;
    --brand-gray: #6b7280;
    --brand-light-gray: #e5e7eb;
    --shadow-soft: 0 8px 30px rgba(0,0,0,0.04);
    --shadow-medium: 0 20px 50px rgba(139,0,0,0.08);
    --shadow-strong: 0 30px 80px rgba(74,15,28,0.12);
    --radius-large: 2rem;
    --radius-medium: 1.25rem;
    --radius-small: 0.75rem;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--brand-white);
    color: var(--brand-charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER - FIXED LAYOUT
   ============================================ */
.site-header {
    background: var(--brand-white);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    overflow: visible;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    position: relative;
    min-height: 90px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(139, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 6px 20px rgba(139, 0, 0, 0.35));
    transform: scale(1.02);
}

.logo-text .brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-red);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.logo-text .tagline {
    font-size: 0.6rem;
    color: var(--brand-gray);
    display: block;
    margin-top: -0.15rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== NAVIGATION ===== */
.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.nav-list > li > a {
    text-decoration: none;
    color: var(--brand-charcoal);
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.2s;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--brand-red);
    border-bottom-color: var(--brand-red);
}

.btn-admin {
    background: #8b0000 !important;
    color: #ffffff !important;
    padding: 0.4rem 1.2rem !important;
    border-radius: 60px !important;
    border-bottom: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
}

.btn-admin:hover {
    background: #5c0000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.2);
}

.btn-admin i {
    margin-right: 0.4rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--brand-red);
    cursor: pointer;
    flex-shrink: 0;
}

/* ============================================
   LANGUAGE DROPDOWN
   ============================================ */
.lang-nav-item {
    display: flex;
    align-items: center;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    background: rgba(139, 0, 0, 0.08);
    border: 1px solid rgba(139, 0, 0, 0.1);
    color: var(--brand-charcoal);
    padding: 0.3rem 0.6rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-dropdown-btn:hover {
    background: rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.2);
}

.lang-dropdown-btn i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.lang-dropdown-btn.open i {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.3rem);
    right: 0;
    background: var(--brand-white);
    border: 1px solid var(--brand-light-gray);
    border-radius: 0.75rem;
    padding: 0.25rem 0;
    min-width: 160px;
    box-shadow: var(--shadow-strong);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 999;
}

.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    color: var(--brand-charcoal);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.lang-dropdown-item:hover {
    background: var(--brand-off-white);
}

.lang-dropdown-item.active {
    background: var(--brand-off-white);
    border-left-color: var(--brand-gold);
    font-weight: 600;
}

/* ============================================
   RESPONSIVE - HEADER
   ============================================ */
@media (max-width: 1200px) {
    .nav-list {
        gap: 0.7rem;
    }
    
    .nav-list > li > a {
        font-size: 0.8rem;
    }
    
    .logo-text .brand {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 60px;
    }
}

@media (max-width: 1024px) {
    .header-flex {
        flex-wrap: wrap;
        justify-content: center;
        min-height: auto;
        gap: 0.5rem;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .main-nav {
        flex: 1 1 100%;
        justify-content: center;
    }
    
    .nav-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        padding: 0.5rem 0;
        flex: 1 1 100%;
    }
    
    .main-nav.open {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.3rem;
        align-items: center;
        width: 100%;
    }
    
    .nav-list > li > a {
        font-size: 0.9rem;
        white-space: normal;
    }
    
    .language-dropdown {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .lang-dropdown-menu {
        right: 50%;
        transform: translateX(50%) translateY(-8px);
        min-width: 180px;
    }
    
    .lang-dropdown-menu.show {
        transform: translateX(50%) translateY(0);
    }
    
    .logo-image {
        height: 50px;
    }
    
    .logo-text .brand {
        font-size: 1rem;
    }
    
    .btn-admin {
        font-size: 0.8rem !important;
        padding: 0.3rem 1rem !important;
    }
    
    .header-flex {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .lang-nav-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
    
    .logo-text .brand {
        font-size: 0.85rem;
    }
    
    .logo-text .tagline {
        font-size: 0.5rem;
    }
    
    .btn-admin {
        font-size: 0.7rem !important;
        padding: 0.2rem 0.8rem !important;
    }
    
    .lang-dropdown-btn {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-block;
    background: var(--brand-gold);
    color: var(--brand-red-dark);
    padding: 0.8rem 2.2rem;
    border-radius: 60px;
    font-weight: 700;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184,134,11,0.3);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--brand-white);
    padding: 0.8rem 2.2rem;
    border-radius: 60px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.4);
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--brand-white);
    color: var(--brand-red-dark);
    border-color: var(--brand-white);
    transform: translateY(-3px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    color: var(--brand-white);
    background: linear-gradient(135deg, var(--brand-red-dark) 0%, var(--brand-red) 40%, var(--brand-gold) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    line-height: 1.8;
    margin: 1.5rem 0 2.5rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item .number {
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.stat-item .label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-large);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-card i {
    font-size: 4rem;
    color: var(--brand-gold-light);
    background: rgba(255,255,255,0.06);
    padding: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.badge-group {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge-group span {
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-size: 0.75rem;
    border: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   HERO OVERLAY - FIXED
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-large);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 0;
    background: var(--brand-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.section-header .label {
    display: inline-block;
    background: var(--brand-red);
    color: var(--brand-white);
    padding: 0.3rem 1.2rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--brand-red-dark);
    margin-top: 0.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--brand-gray);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--brand-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--brand-light-gray);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--brand-gold-light);
}

.service-card .icon {
    background: var(--brand-off-white);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--brand-red);
    margin-bottom: 1.25rem;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-red-dark);
}

.service-card p {
    color: var(--brand-gray);
    margin: 0.5rem 0 1rem;
}

/* ============================================
   BENTO GRID
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.bento-item {
    background: var(--brand-white);
    padding: 2rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--brand-light-gray);
    transition: var(--transition-smooth);
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.bento-item.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--brand-red-dark), var(--brand-red));
    color: var(--brand-white);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-item.featured h3 {
    color: var(--brand-white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.bento-item.featured p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.bento-item.featured .badge-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.bento-item.featured .badge-group span {
    background: rgba(255, 255, 255, 0.12);
    color: var(--brand-white);
    padding: 0.3rem 1rem;
    border-radius: 60px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-red-dark);
    margin-bottom: 0.5rem;
}

.bento-item h4 i {
    margin-right: 0.5rem;
}

.bento-item p {
    color: var(--brand-gray);
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE BENTO
   ============================================ */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bento-item.featured {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-item.featured {
        grid-row: span 1;
    }
    
    .bento-item {
        padding: 1.5rem;
    }
    
    .bento-item.featured h3 {
        font-size: 1.4rem;
    }
}

/* ============================================
   PROJECTS
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--brand-white);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--brand-light-gray);
    transition: var(--transition-smooth);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.project-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--brand-off-white);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-image .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--brand-gray);
    flex-direction: column;
    gap: 0.5rem;
}

.project-image .no-image i {
    font-size: 2.5rem;
    color: var(--brand-gold);
}

.project-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--brand-red);
    color: var(--brand-white);
    padding: 0.25rem 1rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-content {
    padding: 1.5rem;
}

.project-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-red-dark);
}

.project-content p {
    color: var(--brand-gray);
    margin: 0.5rem 0 1rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--brand-white);
    padding: 2rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--brand-light-gray);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card .quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--brand-charcoal);
    margin-bottom: 1.5rem;
}

.testimonial-card .quote i {
    color: var(--brand-gold);
    margin-right: 0.5rem;
    opacity: 0.6;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card .author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-red);
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-card .author strong {
    display: block;
    color: var(--brand-red-dark);
}

.testimonial-card .author span {
    font-size: 0.85rem;
    color: var(--brand-gray);
}

/* ============================================
   NEWS
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--brand-white);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--brand-light-gray);
    transition: var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.news-image {
    height: 200px;
    overflow: hidden;
    background: var(--brand-off-white);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-image .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--brand-gray);
    flex-direction: column;
    gap: 0.5rem;
}

.news-image .no-image i {
    font-size: 2.5rem;
    color: var(--brand-gold);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.8rem;
    color: var(--brand-gray);
    display: block;
    margin-bottom: 0.5rem;
}

.news-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-red-dark);
}

.news-content p {
    color: var(--brand-gray);
    margin: 0.5rem 0 1rem;
}

/* ============================================
   LEARN MORE
   ============================================ */
.learn-more {
    color: var(--brand-red);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(4px);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--brand-red-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--brand-gold);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand .footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 0.75rem;
    display: block;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
}

.footer-brand p {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--brand-gold);
    color: var(--brand-red-dark);
}

.footer-links h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: var(--brand-gold-light);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-contact p i {
    width: 20px;
    color: var(--brand-gold);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--brand-gold-light);
}

.newsletter-signup {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-signup h5 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 100%;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.5rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.85rem;
    min-width: 0;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--brand-gold-light);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    background: var(--brand-gold);
    color: var(--brand-red-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--brand-gold-light);
    transform: translateY(-2px);
}

#newsletterMessage {
    font-size: 0.75rem;
    margin-top: 0.3rem;
    min-height: 1.2rem;
    color: var(--brand-gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    margin-top: 2rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom .credit a {
    color: var(--brand-gold);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom .credit a:hover {
    text-decoration: underline;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--brand-red);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--brand-red-dark);
    transform: translateY(-4px);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--brand-red-dark), var(--brand-red), var(--brand-gold));
    color: var(--brand-white);
    padding: 5rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
}

.page-hero p {
    max-width: 700px;
    margin: 1rem auto 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE - GENERAL
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   IMAGE STYLES - Consistent Sizing
   ============================================ */

/* Hero Image */
.hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* Service Images */
.service-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

/* Product Images */
.product-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

/* Project Images */
.project-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

/* ===== TEAM MEMBER IMAGES - FULLY FIXED ===== */
.team-member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 20%;
    border: 4px solid #f8f5f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: #f8f5f0;
}

.team-image-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid #f8f5f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    flex-shrink: 0;
    background: #f8f5f0;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    display: block;
}

.team-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f8f5f0;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #b8860b;
    border: 4px solid #f8f5f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ===== TEAM THUMBNAIL - FIXED ===== */
.team-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 20%;
    border: 2px solid #e5e7eb;
    padding: 2px;
    background: #ffffff;
    display: block;
    margin: 0 auto;
}

/* ===== TEAM CARD - COMPLETE ===== */
.team-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-left: 6px solid #8b0000;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.team-card .team-name {
    color: #4a0f1c;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.team-card .team-position {
    color: #b8860b;
    font-weight: 600;
    font-size: 1rem;
}

.team-card .team-bio {
    color: #6b7280;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* Testimonial Images */
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 30%;
}

/* News Images */
.news-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

/* Thumbnail Images */
.thumbnail-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    padding: 2px;
    background: #ffffff;
}

/* Placeholder Images */
.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    background: #f8f5f0;
    color: #6b7280;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 0.75rem;
}

.no-image i {
    font-size: 2.5rem;
    color: #b8860b;
}

/* Gallery Images */
.gallery-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE IMAGES
   ============================================ */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 3rem 0;
    }
    
    .service-detail-image,
    .product-detail-image,
    .project-detail-image,
    .news-detail-image {
        max-height: 250px;
    }
    
    .team-member-image,
    .team-image-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .team-avatar-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 350px;
        padding: 2rem 0;
    }
}