/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2b4a;
    --gold: #d8c290;
    --light-gold: #d8c290;
    --pale-gold: #d8c290;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #2c2c2c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', 'Georgia', serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.3;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--navy);
}

.logo svg {
    color: var(--navy);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Libre Baskerville', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

.logo-sub {
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--navy);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--navy);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    transition: all 0.3s ease;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.section-transition {
    width: 100%;
    height: 75px;
    position: relative;
    overflow: hidden;
    margin-top: -2px;
    background: linear-gradient(135deg, 
        #d8c290 0%, 
        #d8c290 25%,
        #d8c290 50%,
        #d8c290 75%,
        #d8c290 100%);
    background-size: 400% 400%;
    animation: sandWave 8s ease-in-out infinite;
}

@keyframes sandWave {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.section-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9) 3px, transparent 3px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.8) 2.5px, transparent 2.5px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.6) 2px, transparent 2px),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.7) 2.5px, transparent 2.5px),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.5) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.6) 2px, transparent 2px),
        radial-gradient(circle at 30% 90%, rgba(255, 255, 255, 0.7) 1.5px, transparent 1.5px),
        radial-gradient(circle at 15% 45%, rgba(232, 220, 196, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 75% 35%, rgba(232, 220, 196, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 55% 65%, rgba(232, 220, 196, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 85% 80%, rgba(232, 220, 196, 0.5) 1.5px, transparent 1.5px);
    background-size: 50px 50px, 70px 70px, 60px 60px, 80px 80px, 65px 65px, 55px 55px, 75px 75px, 45px 45px, 58px 58px, 68px 68px, 52px 52px, 62px 62px;
    background-position: 0 0, 25px 25px, 45px 15px, 15px 35px, 55px 55px, 20px 50px, 40px 10px, 60px 40px, 10px 20px, 50px 60px, 30px 30px, 70px 45px;
    animation: sandSplash 12s linear infinite;
    opacity: 1;
}

@keyframes sandSplash {
    0% {
        background-position: 0 0, 25px 25px, 45px 15px, 15px 35px, 55px 55px, 20px 50px, 40px 10px, 60px 40px, 10px 20px, 50px 60px, 30px 30px, 70px 45px;
        opacity: 1;
    }
    50% {
        background-position: 50px 50px, 95px 95px, 105px 75px, 95px 115px, 120px 120px, 75px 105px, 115px 85px, 105px 85px, 68px 78px, 120px 130px, 82px 92px, 132px 107px;
        opacity: 0.9;
    }
    100% {
        background-position: 100px 100px, 165px 165px, 165px 135px, 175px 195px, 185px 185px, 130px 160px, 190px 160px, 150px 130px, 126px 136px, 190px 200px, 134px 154px, 194px 169px;
        opacity: 1;
    }
}

.section-transition::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmerSweep 4s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes shimmerSweep {
    0%, 100% {
        background-position: -200% 0;
        opacity: 0;
    }
    50% {
        background-position: 200% 0;
        opacity: 0.6;
    }
}

.section-transition-inverse {
    width: 100%;
    height: 75px;
    position: relative;
    overflow: hidden;
    margin-top: -2px;
    background: linear-gradient(135deg, 
        #d8c290 0%, 
        #d8c290 25%,
        #d8c290 50%,
        #d8c290 75%,
        #d8c290 100%);
    background-size: 400% 400%;
    animation: sandWave 8s ease-in-out infinite;
}

.section-transition-inverse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9) 3px, transparent 3px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.8) 2.5px, transparent 2.5px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.6) 2px, transparent 2px),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.7) 2.5px, transparent 2.5px),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.5) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.6) 2px, transparent 2px),
        radial-gradient(circle at 30% 90%, rgba(255, 255, 255, 0.7) 1.5px, transparent 1.5px),
        radial-gradient(circle at 15% 45%, rgba(232, 220, 196, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 75% 35%, rgba(232, 220, 196, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 55% 65%, rgba(232, 220, 196, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 85% 80%, rgba(232, 220, 196, 0.5) 1.5px, transparent 1.5px);
    background-size: 50px 50px, 70px 70px, 60px 60px, 80px 80px, 65px 65px, 55px 55px, 75px 75px, 45px 45px, 58px 58px, 68px 68px, 52px 52px, 62px 62px;
    background-position: 0 0, 25px 25px, 45px 15px, 15px 35px, 55px 55px, 20px 50px, 40px 10px, 60px 40px, 10px 20px, 50px 60px, 30px 30px, 70px 45px;
    animation: sandSplash 12s linear infinite;
    opacity: 1;
}

.section-transition-inverse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmerSweep 10s ease-in-out infinite;
    opacity: 0.4;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.hero-logo {
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.hero-logo-main {
    font-family: 'Libre Baskerville', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a2b4a;
    letter-spacing: 1px;
}

.hero-logo-sub {
    font-family: 'Libre Baskerville', serif;
    font-size: 10px;
    font-weight: 400;
    color: #1a2b4a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title-wrapper {
    position: absolute;
    top: -300px;
    left: 80px;
    text-align: left;
    max-width: 400px;
}

.hero-main-title {
    font-size: 72px;
    font-weight: 700;
    color: #1a2b4a;
    letter-spacing: 8px;
    margin-bottom: 20px;
    font-family: 'Libre Baskerville', serif;
}

.hero-subtitle-wrapper {
    text-align: left;
}

.hero-tagline-sub {
    font-size: 24px;
    font-style: italic;
    color: #d8c290;
    margin-bottom: 10px;
    font-family: 'Lora', serif;
    text-align: left;
}

.hero-gold-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #d8c290 0%, #d8c290 30%, transparent 100%);
    margin-top: 10px;
}

.hero-bottom-info {
    position: absolute;
    bottom: -250px;
    left: 120px;
    max-width: 700px;
}

.hero-company-name {
    font-size: 20px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 25px;
    font-family: 'Libre Baskerville', serif;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-triangles {
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
}

.hero-center {
    text-align: center;
    max-width: 1100px;
}

.hero-tagline {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    letter-spacing: 4px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

/* ========================================
   WE BUILD SECTION
   ======================================== */
.we-build-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.we-build-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.logo-hero {
    margin-bottom: 40px;
    display: inline-block;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 30px;
}

.hero-line {
    display: block;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 160, 83, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 43, 74, 0.2);
}

/* ========================================
   CONTENT GRID LAYOUT
   ======================================== */
.who-we-are {
    position: relative;
    min-height: 100vh;
    display: flex;
    padding: left;
    align-items: left;
    background: #f5f5f5;
    clip-path: none;
}

.who-we-are-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.who-we-are-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.who-we-are .container {
    position: relative;
    z-index: 2;
    display: block;
    padding: 0;
    max-width: none;
    margin: 0;
}

.who-we-are-content {
    max-width: 700px;
    padding: 60px 80px;
    background: transparent;
    text-align: left;
    margin: 0;
    float: left;
}

.our-identity {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.our-identity-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-identity-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.our-identity .container {
    position: relative;
    z-index: 2;
    display: block;
    padding: 0;
    max-width: none;
    margin: 0;
    width: 100%;
    height: 100%;
}

.our-identity-content {
    max-width: 600px;
    padding: 0px 40px;
    background: transparent;
    text-align: left;
    margin: 0;
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-70%);
    z-index: 3;
}

.vision-mission {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f5f5f5;
}

.vision-mission-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vision-mission-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vision-mission .container {
    position: relative;
    z-index: 2;
    display: block;
    padding: 0;
    max-width: none;
    margin: 0;
}

.vision-mission-content {
    max-width: 700px;
    padding: 60px 80px;
    background: transparent;
    text-align: left;
    margin: 0;
    float: left;
}

.mt-5 {
    margin-top: 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: 100px 1fr 500px;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    grid-template-columns: 600px 1fr 100px;
}

.content-left {
    position: relative;
}

.content-center {
    padding: 40px 0;
}

.content-right {
    position: relative;
}

.decorative-triangles {
    position: relative;
    opacity: 0.3;
}

.gold-line {
    width: 15px;
    height: 200px;
    background: var(--gold);
    margin-top: 20px;
}

.gold-line.right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.gold-line.left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.image-wrapper.large {
    height: 550px;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-title.centered {
    text-align: center;
}

.section-title .gold {
    color: var(--gold);
}

.section-title .navy {
    color: var(--navy);
}

.subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.subtitle.centered {
    text-align: center;
}

.para {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: justify;
}

.mt-5 {
    margin-top: 60px;
}

.mt-6 {
    margin-top: 80px;
}

/* ========================================
   HIGHLIGHT BOX
   ======================================== */
.highlight-box {
    background: var(--pale-gold);
    padding: 30px 35px;
    border-radius: 20px;
    margin: 30px 0;
    border-left: 5px solid var(--gold);
}

.highlight-box p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* ========================================
   BUILDING FUTURE SECTION
   ======================================== */
.building-future {
    background: linear-gradient(135deg, var(--pale-gold) 0%, #ffffff 100%);
    padding: 120px 0;
}

.tagline-wrapper {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 60px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-left: 8px solid var(--gold);
}

.tagline {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 3px;
    line-height: 1.4;
}

/* ========================================
   CORE VALUES
   ======================================== */
.core-values {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.core-values-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.core-values-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.core-values-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: var(--pale-gold);
    transform: translateX(10px);
}

.value-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Libre Baskerville', serif;
    min-width: 70px;
}

.value-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.value-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services {
    background: var(--light-gray);
}

.services-subtitle {
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    margin: 60px 0 40px 0;
    text-align: center;
}

.contracting-grid {
    position: relative;
    padding: 40px 0;
}

.contracting-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.contracting-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    transform: scaleY(-1);
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--gold);
}

.service-card:hover h4 {
    color: var(--gold);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* ========================================
   TRADING DIVISION
   ======================================== */
.trading-grid {
    position: relative;
    padding: 40px 0 80px 0;
    margin-bottom: -100px;
}

.trading-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.trading-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.trading-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.trade-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trade-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold);
}

.trade-item:hover h4 {
    color: var(--gold);
}

.trade-icon {
    flex-shrink: 0;
}

.trade-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.trade-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* ========================================
   STRUCTURE LISTS
   ======================================== */
.org-structure {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.org-structure-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.org-structure-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.org-structure-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.unique {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.unique-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.unique-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.unique-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.structure-list,
.org-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.structure-list li,
.org-list li {
    font-size: 18px;
    line-height: 2.2;
    color: var(--text-dark);
    padding-left: 30px;
    position: relative;
}

.structure-list li:before,
.org-list li:before {
    content: "◆";
    color: var(--gold);
    font-size: 16px;
    position: absolute;
    left: 0;
}

/* ========================================
   ISO CERTIFICATIONS
   ======================================== */
.iso-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin: 60px 0;
}

.iso-card {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.iso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.iso-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.iso-image img {
    width: 110%;
    height: 105%;
    object-fit: cover;
    object-position: center;
}

.iso-badge {
    background: var(--pale-gold);
    padding: 20px;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
}

.iso-text {
    text-align: center;
    margin-top: 50px;
}

.iso-text p {
    font-size: 18px;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* ========================================
   GROWTH ROADMAP
   ======================================== */
.roadmap {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.roadmap-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.roadmap-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.roadmap-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.roadmap-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    background: var(--pale-gold);
    transform: translateX(10px);
}

.diamond {
    color: var(--gold);
    font-size: 26px;
    flex-shrink: 0;
}

.roadmap-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* ========================================
   PROMISE SECTION
   ======================================== */
.promise {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    min-height: 600px;
}

.promise-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.promise-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.promise-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0;
    text-align: left;
}

.promise-text {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.logo-watermark {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.05;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    max-height: 400px;
    margin: 0 auto;
}

.contact-content .section-title {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 30px;
    border-radius: 10px;
    display: block;
    margin: 0 auto 30px;
    width: fit-content;
}

.contact-info {
    background: var(--white);
    padding: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.contact-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 0px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
}

.contact-value {
    color: var(--text-dark);
    font-size: 16px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--navy);
    padding: 40px 0;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    margin: 0;
    font-size: 15px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .content-grid {
        grid-template-columns: 80px 1fr 400px;
        gap: 40px;
    }
    
    .content-grid.reverse {
        grid-template-columns: 400px 1fr 80px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        gap: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-logo {
        top: 20px;
        left: 20px;
    }
    
    .hero-logo-main {
        font-size: 14px;
    }
    
    .hero-logo-sub {
        font-size: 8px;
    }
    
    .hero-title-wrapper {
        top: 80px;
        right: 30px;
        left: 30px;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .hero-tagline-sub {
        font-size: 16px;
    }
    
    .hero-triangles {
        display: none;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-tagline {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-left {
        display: none;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trading-content {
        grid-template-columns: 1fr;
    }
    
    .iso-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .tagline-wrapper {
        padding: 50px 30px;
    }
    
    .tagline {
        font-size: 28px;
        letter-spacing: 1px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}
