/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary-color: #d98d30;
    /* Premium Gold/Orange */
    --primary-light: #f5a64d;
    --secondary-color: #fcfaf7;
    /* Warm white/beige tint */
    --accent-color: #d98d30;
    --text-dark: #222222;
    --text-gray: #4a4a4a;
    --white: #ffffff;
    --border-radius: 8px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--white);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    /* Ensure responsiveness */
}

img {
    max-width: 100%;
    /* Global overflow prevention */
    height: auto;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.bg-white {
    background-color: var(--white) !important;
}

.font-italic {
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #002244;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    position: relative;
    z-index: 10;
    text-decoration: none;
    /* Ensure link behavior */
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    background: transparent;
    box-shadow: none;
    height: 100px;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

.header.scrolled {
    background: #000;
    position: fixed;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    border-radius: 4px;
    /* Soften edges */
    background: rgba(255, 255, 255, 0.9);
    /* Add bg to make logo pop */
    padding: 5px;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    /* White text on hero */
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-contact {
    padding: 10px 24px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
}

.btn-contact:hover {
    color: var(--white);
    background-color: #d66f15;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2001;
    /* Above mobile menu */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    /* White for visibility on dark hero */
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Header Scrolled - hamburger color change */
.header.scrolled .hamburger span {
    background-color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: #000;
    /* Fallback color */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    padding-top: 80px;
    overflow: hidden;
    /* Ensure slides don't overflow */
}

/* Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    /* Slight zoom for effect */
    animation: zoomEffect 20s infinite alternate;
}

.slide.active {
    opacity: 1;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient overlay */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    /* Fix small gap */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
    /* Title Effects */
    background: linear-gradient(to right, #ffffff, #cfd9e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    /* Shadow for legibility */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 25px;
    color: #cbdcf0;
}

.hero-subtext {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    /* Ensure z-index works */
    z-index: 10;
    /* Bring above overlays */
}

/* About Section */
.section-title {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin-bottom: 30px;
}

.section-grid {
    display: block;
    /* Removed grid */
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Removed .about-img-main */

.subsection-title {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.vision-box {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
}

.vision-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Values */
.values-wrapper {
    margin-top: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-item h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Services Section */
.services {
    background-color: #f8f9fa;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-block {
    background: var(--white);
    padding: 60px;
    border-bottom: 1px solid #eee;
}

.service-block:last-child {
    border-bottom: none;
}

.service-block.alt-bg {
    background-color: #f1f4f8;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-details {
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.02);
    padding: 25px;
    border-left: 3px solid var(--primary-color);
}

.service-details h4 {
    margin-bottom: 15px;
}

.service-details ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px 30px;
    list-style: disc;
    margin-left: 20px;
}

.service-grid-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.service-grid-details ul {
    list-style: disc;
    margin-left: 20px;
}

/* Additional Services */
.additional-services {
    margin-top: 80px;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.add-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.add-service-item {
    background: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid #e1e4e8;
    text-align: center;
}

/* Business Scope */
.business-scope {
    background-color: var(--primary-color);
    color: var(--white);
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.scope-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.scope-card h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.scope-card ul {
    list-style: none;
    /* Custom bullets */
}

.scope-card li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.scope-card li::before {
    content: "•";
    color: #4cc9f0;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.why-choose-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.why-item {
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.contact-info-new {
    background: var(--white);
    padding: 60px;
}

.contact-detail-item {
    margin-bottom: 30px;
}

.contact-detail-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 4px;
    margin-top: 30px;
}

.contact-form-new {
    background: var(--secondary-color);
    padding: 60px;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    margin-bottom: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: #111;
    color: #888;
    padding: 60px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}

.footer-brand h3 {
    color: var(--white);
}

.footer-link-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-link-col ul li {
    margin-bottom: 10px;
}

.footer-link-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    /* Slide out right sidebar */
    width: 300px;
    /* Limit width */
    height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-list li {
    margin: 20px 0;
    text-align: center;
}

.mobile-nav-list a {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {

    .section-grid,
    .contact-wrapper,
    .service-grid-details {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
        margin-top: 20px;
        /* Prevent overlap */
    }

    .logo-img {
        height: 60px;
    }

    .service-block {
        padding: 40px 20px;
    }

    .contact-info-new,
    .contact-form-new {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .trading-list-grid {
        grid-template-columns: 1fr;
    }

    .scope-card,
    .vision-box,
    .additional-services {
        padding: 25px;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero {
        padding-top: 60px;
    }
}

/* Fixed Trading Alignment */
.trading-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.trading-list-grid ul {
    list-style: none;
}

.trading-list-grid li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.trading-list-grid li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}