/*
Theme Name: ABR Responsive
Theme URI: https://www.abearresources.com
Author: Oliver Griebl
Author URI: https://www.abearresources.com
Description: A fully responsive WordPress theme based on the ABear Resources static website. Includes Oil Price API integration, mobile-optimized layouts, and all page templates.
Version: 1.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive, oil-gas, corporate, dark-theme, custom-header
Text Domain: abr-responsive
*/

/* ============================================
   ABR RESPONSIVE WORDPRESS THEME
   ============================================ */

/* CSS Variables */
:root {
    --primary: #1a365d;
    --primary-dark: #0d1f3c;
    --accent: #c9a227;
    --accent-light: #d4b84a;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --bg-dark: #0a1425;
    --bg-card: #16213e;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

@keyframes pulsate {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-light);
    background: var(--bg-dark);
    line-height: 1.7;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(13, 31, 60, 0.95);
    position: relative;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .company {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.logo-text .tagline {
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-links a:hover, .nav-links .current-menu-item a {
    color: var(--accent);
}

.btn-investor {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--bg-dark);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-investor:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 20, 37, 0.9) 0%, rgba(26, 54, 93, 0.85) 100%),
                url('images/home-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-content {
    max-width: 1100px;
    padding: 0 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--accent);
}

.hero .tagline {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.hero .subtagline {
    font-size: 1.1rem; font-weight: normal;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 13px 38px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.btn-submit {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--bg-card);
    padding: 40px 0;
    border-top: 3px solid var(--accent);
}

.stats-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    padding: 0 20px;
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-item .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 40px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.section-header .divider {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 20px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    color: var(--accent);
    font-size: 0.75rem;
    margin-top: 3px;
}

.feature-item span {
    color: var(--text-light);
}

.about-image {
    
    border-radius: 10px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Three Column About Cards */
.about-cards-table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    border-collapse: separate;
    border-spacing: 20px;
}

.about-cards-table td {
    background: linear-gradient(135deg, #16213e, #1a2a4a);
    border-radius: 10px;
    padding: 35px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    width: 33%;
    vertical-align: top;
}

.about-cards-table td.center-logo {
    vertical-align: middle;
    text-align: center;
    background: transparent;
    border: none;
}

.about-cards-table td.center-logo img {
    max-width: 100%;
    width: 350px;
    height: auto;
}

.about-cards-table h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-cards-table p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   OPERATIONS SECTION
   ============================================ */
.operations {
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.operations-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: center/cover no-repeat;
    filter: brightness(0.4);
    z-index: 0;
}

.operations .section-header {
    position: relative;
    z-index: 1;
}

.operations-table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-collapse: separate;
    border-spacing: 20px;
}

.operations-table td {
    background: rgba(22, 33, 62, 0.9);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    vertical-align: top;
    text-align: center;
}

.operation-icon {
    width: 60px;
    height: 60px;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.operation-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.operations-table h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.operations-table p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   LEADERSHIP PREVIEW
   ============================================ */
.leadership {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-photo {
    height: 250px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-photo i {
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.6;
}

.leader-info {
    padding: 25px;
}

.leader-info h3 {
    color: #fff;
    font-size: 0.75rem;
    margin-bottom: 5px;
}

.leader-info .title {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.leader-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    
    text-align: center;
    padding: 80px 40px;
}

.cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, rgba(10, 20, 37, 0.9) 0%, rgba(26, 54, 93, 0.85) 100%),
                url('images/page-header-bg.jpg') center/cover;
    padding: 150px 40px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.page-header p {
    font-weight: bold;
    color: #c9a227;
    font-size: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PAGE HEADER - MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 50px !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .page-header h1 {
        font-size: clamp(1.8rem, 6vw, 3rem) !important;
        margin-bottom: 10px;
        padding-top: 40px;
    }
    
    .page-header p {
        font-size: clamp(1rem, 3vw, 1.2rem) !important;
        max-width: 100% !important;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 15px 40px !important;
    }
    
    .page-header h1 {
        font-size: 1.6rem !important;
    }
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.content-block h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.content-block p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.content-block ul {
    list-style: none;
}

.content-block ul li {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.content-block ul li i {
    color: var(--accent);
    margin-top: 5px;
}

.content-image {
    border-radius: 10px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   VALUES GRID
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.value-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.value-card h4 {
    color: #fff;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   TEAM/INVESTORS TABLE STYLES
   ============================================ */
.data-table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table th {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.data-table td {
    color: var(--text-muted);
}

.team-photo {
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid var(--accent);
    object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-card);
    padding: 60px 40px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-about .logo-text {
    margin-bottom: 20px;
}

.footer-about img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Alignments */
.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* Post content */
.entry-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #fff;
    margin: 30px 0 15px;
}

.entry-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.entry-content a {
    color: var(--accent);
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .operations-grid,
    .leadership-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1001;
        background: rgba(13, 31, 60, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid rgba(201, 162, 39, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 0.75rem;
        padding: 10px 0;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 2rem;
        white-space: normal;
    }

    .hero .tagline {
        font-size: 0.75rem;
    }

    .hero .subtagline {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    /* Hero table mobile */
    .hero-content table {
        display: block;
    }

    .hero-content table tr {
        display: flex;
        flex-direction: column;
    }

    .hero-content table td {
        display: block;
        padding: 10px 0 !important;
        text-align: center !important;
    }

    .hero-content table td:nth-child(2) {
        display: none;
    }

    .section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* About cards table */
    .about-cards-table,
    .about-cards-table tbody,
    .about-cards-table tr,
    .about-cards-table td {
        display: block;
        width: 100% !important;
    }

    .about-cards-table td {
        margin-bottom: 20px;
    }

    .about-cards-table td.center-logo {
        order: -1;
        margin-bottom: 30px;
    }

    /* Operations table */
    .operations-table,
    .operations-table tbody,
    .operations-table tr,
    .operations-table td {
        display: block;
        width: 100% !important;
    }

    .operations-table td {
        margin-bottom: 20px;
    }

    .leadership-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-header {
        padding: 120px 20px 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stat-item .number {
        font-size: 2rem;
    }
}
/* ============================================
   TEAM GRID (Executive Team)
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    border: 1px solid var(--accent);
}

.team-photo {
    height: 350px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo i {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.5;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-info h4 {
    color: #fff;
    font-size: 0.75rem;
    margin-bottom: 5px;
}

.team-info .role {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile header tagline - center on small screens */
.header-tagline {
    display: none;
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .navbar .container > span {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* ============================================
   INVESTOR PAGE STYLES
   ============================================ */
.investor-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.overview-block h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
}

.overview-block p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.overview-block ul {
    list-style: none;
}

.overview-block ul li {
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.overview-block ul li i {
    color: var(--accent);
    margin-top: 4px;
}

/* Right side container - centered */
.overview-block.right-side {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overview-block.right-side h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.overview-block.right-side h1.gold {
    color: var(--accent);
}

.overview-block.right-side .commitment {
    color: var(--text-light);
    font-size: 0.75rem;
    margin-top: 10px;
}

/* Contact Box */
.investor-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.investor-contact h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.investor-contact p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.investor-contact a {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
}

/* Page header subtitle styles */
.page-header .commitment {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header .strategic-partner {
    color: var(--text-light);
    font-size: 1.1rem; font-weight: normal;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .investor-overview {
        grid-template-columns: 1fr;
    }
    .overview-block.right-side {
        text-align: left;
    }
}

/* Mobile - more space below fixed header */
@media (max-width: 768px) {
    .page-header {
        padding: 180px 20px 80px !important;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-content {
        padding-top: 60px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 160px 20px 60px !important;
    }
}

/* Mobile Menu Fix - ensure it appears */
@media (max-width: 768px) {
    .navbar {
        position: relative !important;
    }
    
    .menu-toggle {
        display: block !important;
        z-index: 1002;
    }
    
    .nav-links {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1001 !important;
        background: rgba(13, 31, 60, 0.98) !important;
        flex-direction: column !important;
        padding: 20px !important;
    }
    
    .nav-links.active {
        display: flex !important;
    }
}
}

/* ============================================
   FLUID TYPOGRAPHY (Added 2026-08-13)
   ============================================ */
h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

p, .hero .tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.2rem);
}

.hero .subtagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

/* ============================================
   RESPONSIVE IMAGES
   ============================================ */
img {
    max-width: 100%;
    height: auto;
}

.about-image img,
.leader-photo img,
.map-visual img,
.responsive-img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   TOUCH-FRIENDLY TAP TARGETS
   ============================================ */
.nav-links a,
.btn-primary,
.btn-secondary,
.btn-investor,
button,
input[type="submit"],
.form-group input,
.form-group textarea {
    min-height: 44px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE GRID IMPROVEMENTS
   ============================================ */
/* Stats bar - stack on mobile */
@media (max-width: 768px) {
    .stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item .number {
        font-size: 1.8rem;
    }
    
    .about-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-bar .container {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 15px 0;
    }
}

/* ============================================
   RESPONSIVE TABLES (About & Operations)
   ============================================ */
@media (max-width: 768px) {
    .about-cards-table,
    .operations-table {
        display: block;
    }
    
    .about-cards-table td,
    .operations-table td {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .about-cards-table td.center-logo {
        display: none;
    }
    
    .about-cards-table,
    .operations-table {
        border-spacing: 0;
    }
}

/* ============================================
   TEAM GRID RESPONSIVE
   ============================================ */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 40px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(201,162,39,0.2);
}

.contact-form {
    padding: 40px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(201,162,39,0.2);
}

.contact-form h3,
.contact-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

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

.info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item .icon i {
    font-size: 0.75rem;
    color: var(--bg-dark);
}

.info-item h4 {
    color: #fff;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
}

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

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    text-align: left !important;
    margin: 0;
}

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

/* ============================================
   CONTACT PAGE RESPONSIVE

    
    .info-item {
        flex-wrap: wrap !important;
    }
    
    .info-item .icon {
        flex-shrink: 0 !important;
    }

   ============================================ */
@media screen and (max-width: 768px), (max-device-width: 768px) {
    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .contact-grid { 
        grid-template-columns: 1fr !important; 
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
        gap: 20px !important;
    } 
    
    .contact-form { 
        padding: 20px 15px !important; 
        width: calc(100% - 30px) !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    } 
    
    .contact-info { 
        padding: 20px 15px !important; 
        width: calc(100% - 30px) !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    } 
    
    .contact-info img, 
    .map-visual img,
    .responsive-img { 
        max-width: 100% !important; 
        width: calc(100vw - 60px) !important; 
        height: auto !important;
        object-fit: contain !important;
    }
    
    .section {
        padding: 40px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .page-header {
        padding: 120px 15px 50px !important;
    }
    
    .navbar .container {
        padding: 15px !important;
    }
}

/* ============================================
   FOOTER RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================
   HERO SECTION RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 20px 80px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero .tagline {
        font-size: 0.75rem;
    }
}

/* ============================================
   NAV BRANDING ON MOBILE
   ============================================ */
@media (max-width: 768px) {
    .navbar .container > span {
        display: none;
    }
    
    .logo img {
        height: 50px !important;
    }
}

/* ============================================
   SIMPLE FOOTER STYLES
   ============================================ */
footer {
    background: var(--primary-dark);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
}

footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    footer {
        padding: 25px 15px;
    }
    
    footer p {
        font-size: 0.85rem;
    }
}

/* ============================================
   MOBILE FIXES FOR ABOUT PAGE
   ============================================ */

/* Strategy Section - Stack grid on mobile */
@media (max-width: 768px) {
    .section[style*="grid-template-columns"],
    .section[style*="1200px"] {
        padding: 40px 20px !important;
    }
    
    .section[style*="grid-template-columns"] > div,
    section[style*="grid-template-columns"] > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .section[style*="grid-template-columns"] > div > div:first-child,
    section[style*="grid-template-columns"] > div > div:first-child {
        padding-right: 0 !important;
        border-right: none !important;
        border-bottom: 2px solid #c9a227;
        padding-bottom: 25px !important;
    }
    
    .section[style*="grid-template-columns"] img,
    section[style*="grid-template-columns"] img {
        max-width: 100% !important;
        min-height: 250px !important;
    }
}

/* Strategic Pillars Section - Stack on mobile */
@media (max-width: 768px) {
    section[style*="flex"] {
        padding: 40px 20px !important;
    }
    
    section[style*="flex"] > div,
    .section[style*="flex"] > div {
        flex-direction: column !important;
        gap: 30px !important;
        align-items: stretch !important;
    }
    
    section[style*="flex"] > div > div:first-child,
    .section[style*="flex"] > div > div:first-child {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    section[style*="flex"] > div > div:first-child img,
    .section[style*="flex"] > div > div:first-child img {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    section[style*="flex"] table,
    .section[style*="flex"] table {
        width: 100% !important;
    }
    
    section[style*="flex"] table td,
    .section[style*="flex"] table td {
        display: block !important;
        width: 100% !important;
        padding: 8px 0 !important;
    }
    
    section[style*="flex"] table tr td:first-child,
    .section[style*="flex"] table tr td:first-child {
        padding-bottom: 4px !important;
    }
}

/* Differentiators Section - Stack on mobile */
@media (max-width: 768px) {
    section[style*="max-width: 1200px"],
    .section[style*="max-width: 1200px"] {
        padding: 40px 20px !important;
    }
    
    section[style*="max-width: 1200px"] > div,
    .section[style*="max-width: 1200px"] > div {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    section[style*="max-width: 1200px"] > div > div:last-child,
    .section[style*="max-width: 1200px"] > div > div:last-child {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    section[style*="max-width: 1200px"] > div > div:last-child img,
    .section[style*="max-width: 1200px"] > div > div:last-child img {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ============================================
   ABOUT PAGE MOBILE OVERFLOW FIX
   ============================================ */

/* Strategy Section */
@media (max-width: 768px) {
    .section[style*="padding: 60px 40px"] {
        padding: 40px 20px !important;
    }
    
    .section[style*="grid-template-columns"] > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .section[style*="grid-template-columns"] > div > div:first-child {
        padding-right: 0 !important;
        border-right: none !important;
        border-bottom: 2px solid #c9a227;
        padding-bottom: 25px !important;
        min-height: auto !important;
    }
    
    .section[style*="grid-template-columns"] img {
        min-height: 200px !important;
    }
}

/* Strategic Pillars Section */
@media (max-width: 768px) {
    section[style*="padding: 80px 40px"]:nth-of-type(4) {
        padding: 40px 20px !important;
    }
    
    section[style*="padding: 80px 40px"]:nth-of-type(4) > div {
        flex-direction: column !important;
    }
    
    section[style*="padding: 80px 40px"]:nth-of-type(4) > div > div:first-child {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    section[style*="padding: 80px 40px"]:nth-of-type(4) table {
        width: 100% !important;
    }
    
    section[style*="padding: 80px 40px"]:nth-of-type(4) table td {
        display: block !important;
        width: 100% !important;
        padding: 8px 0 !important;
    }
    
    section[style*="padding: 80px 40px"]:nth-of-type(4) table tr td:first-child {
        padding-bottom: 2px !important;
    }
}

/* Differentiators Section */
@media (max-width: 768px) {
    section[style*="padding: 80px 40px"]:last-of-type {
        padding: 40px 20px !important;
    }
    
    section[style*="padding: 80px 40px"]:last-of-type > div {
        flex-direction: column !important;
    }
    
    section[style*="padding: 80px 40px"]:last-of-type > div > div:last-child {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    section[style*="padding: 80px 40px"]:last-of-type img {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Table overflow fix globally */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table tbody,
    table tr,
    table td {
        display: block;
        width: 100% !important;
    }
    
    table td[style*="width: 180px"] {
        width: auto !important;
        padding-bottom: 4px !important;
        font-weight: bold;
        color: #c9a227;
    }
}

/* Ensure no horizontal overflow on any section */
@media (max-width: 768px) {
    .section,
    section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .section > div,
    section > div {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


/* STRATEGY SECTION MOBILE */
@media screen and (max-width: 768px) {
    .strategy-section {
        padding: 40px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .strategy-container {
        padding: 0 10px !important;
    }
    
    .strategy-title {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
    }
    
    .strategy-intro {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
    }
    
    .strategy-image {
        margin-bottom: 25px !important;
        padding-left: 15px !important;
        border-left: 2px solid #c9a227 !important;
    }
    
    .strategy-image img {
        max-width: 100% !important;
        width: 100% !important;
        min-height: 250px !important;
    }
    
    .strategy-content {
        text-align: left !important;
    }
}


/* STRATEGIC PILLARS SECTION MOBILE */
@media screen and (max-width: 768px) {
    .pillars-section {
        padding: 40px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .pillars-container {
        padding: 0 10px !important;
    }
    
    .pillars-title {
        font-size: 1.4rem !important;
        margin-bottom: 20px !important;
    }
    
    .pillars-image {
        margin-bottom: 25px !important;
    }
    
    .pillars-image img {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .pillars-content table,
    .pillars-content tbody,
    .pillars-content tr,
    .pillars-content td {
        display: block !important;
        width: 100% !important;
    }
    
    .pillars-content td {
        padding: 10px 0 !important;
    }
    
    .pillars-content td:first-child {
        padding-bottom: 5px !important;
        font-size: 1rem !important;
    }
}
