/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary: #c5a059;
    --primary-hover: #b38e47;
    --primary-light: #f7f4ec;
    --primary-rgb: 197, 160, 89;
    --dark: #121212;
    --dark-accent: #1e1e1e;
    --dark-light: #2a2a2a;
    --light: #ffffff;
    --gray-bg: #f9f9fb;
    --gray-border: #e8e8ed;
    --text-color: #333333;
    --text-muted: #666666;
    --font: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hard: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-round: 50%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-color);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

.text-gold {
    color: var(--primary);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.15);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--light);
}

.btn-dark:hover {
    background-color: var(--dark-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Header & Navigation */
header {
    background-color: var(--light);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    height: 42px;
}

.logo-icon-svg {
    width: 45px;
    height: 45px;
}

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

.logo-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 1px;
    line-height: 1.1;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--dark-accent);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Top Bar Details */
.top-contact-bar {
    background-color: var(--dark);
    color: var(--light);
    font-size: 0.85rem;
    padding: 0.5rem 2rem;
}

.top-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-contact-info {
    display: flex;
    gap: 1.5rem;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-contact-item svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
}

/* Hero Announcement Marquee Banner */
.hero-marquee-banner {
    width: 100%;
    background-color: #10b981; /* Emerald Green */
    color: #ffffff; /* White text */
    padding: 0.6rem 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-marquee-banner .hero-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-marquee-banner .hero-marquee-text {
    position: absolute;
    width: max-content;
    height: 100%;
    margin: 0;
    line-height: 24px;
    transform: translateX(100vw);
    animation: hero-marquee-scroll 25s linear infinite;
    color: #0c0c11; /* Dark hero background color */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

@keyframes hero-marquee-scroll {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

.hero-marquee-banner:hover .hero-marquee-text {
    animation-play-state: paused;
}

/* Footer style */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 5rem 2rem 2rem;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-main {
    color: var(--light);
}

.footer-brand .logo-sub {
    color: #aaaaaa;
}

.footer-desc {
    color: #cccccc;
    margin-top: 1.5rem;
    max-width: 400px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    color: #cccccc;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: #cccccc;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    fill: var(--primary);
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #888888;
    font-size: 0.85rem;
}

/* ============================================
   ADVANCED HERO SECTION — Premium Dark Layout
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #121218 40%, #1a1a24 100%);
    padding: 7rem 2rem 0;
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Particle Canvas */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Decorative Geometric Shapes */
.hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hero-deco--ring-1 {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(197, 160, 89, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -80px;
    animation: spinSlow 40s linear infinite;
}

.hero-deco--ring-2 {
    width: 250px;
    height: 250px;
    border: 1px solid rgba(197, 160, 89, 0.06);
    border-radius: 50%;
    bottom: 80px;
    left: -60px;
    animation: spinSlow 30s linear infinite reverse;
}

.hero-deco--line-v {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.3), transparent);
    top: 60px;
    left: 12%;
    animation: fadeInDown 2s ease forwards;
}

.hero-deco--diamond {
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(197, 160, 89, 0.2);
    transform: rotate(45deg);
    top: 200px;
    left: 11.5%;
    animation: pulseGold 4s ease-in-out infinite;
}

.hero-deco--dots {
    width: 80px;
    height: 80px;
    background-image: radial-gradient(rgba(197, 160, 89, 0.12) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    bottom: 140px;
    right: 5%;
    opacity: 0.6;
}

/* Hero Container */
.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content (Left Column) */
.hero-content {
    color: #ffffff;
}

/* Badge Pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 30px;
    padding: 0.45rem 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.hero-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

/* Title Lines — Staggered Reveal */
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    color: #ffffff;
}

.hero-title-line {
    display: block;
    overflow: hidden;
    animation: slideUpReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-line--1 { animation-delay: 0.2s; }
.hero-title-line--2 { animation-delay: 0.4s; }
.hero-title-line--3 { animation-delay: 0.6s; }

.hero-title .text-gold {
    color: var(--primary);
    position: relative;
}

.hero-title .text-gold::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
    opacity: 0.5;
}

/* Description */
.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary), #d4b36a);
    color: #0a0a0f;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.2);
}

.btn-hero-primary:hover {
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.4);
    transform: translateY(-3px);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(197, 160, 89, 0.08);
}

/* Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-plus {
    position: absolute;
    top: 0;
    right: -14px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.3), transparent);
}

/* ========= Image Column ========= */
.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image-frame-border {
    position: absolute;
    top: -8px;
    right: -8px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid rgba(197, 160, 89, 0.3);
    border-radius: 16px;
    z-index: -1;
    animation: pulseGold 5s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Floating Info Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(18, 18, 24, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-floating-card strong {
    display: block;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-floating-card small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    margin-top: 1px;
}

.hero-floating-card--top {
    top: 8%;
    right: -12px;
    animation: floatBounce 4s ease-in-out infinite;
}

.hero-floating-card--bottom {
    bottom: 10%;
    left: -18px;
    animation: floatBounce 4s ease-in-out 2s infinite;
}

/* ========= Marquee Band ========= */
.hero-marquee-band {
    background: rgba(197, 160, 89, 0.06);
    border-top: 1px solid rgba(197, 160, 89, 0.12);
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
    padding: 1rem 0;
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.hero-marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========= Hero Keyframe Animations ========= */
@keyframes slideUpReveal {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.4); }
}

@keyframes pulseGold {
    0%, 100% { opacity: 0.3; }
    50%      { opacity: 0.7; }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Highlights Section */
.highlights-section {
    padding: 5rem 2rem;
    background: var(--light);
}

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

.highlight-card {
    background: var(--light);
    border: 1px solid var(--gray-border);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary);
}

.highlight-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--border-radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-icon-wrapper {
    background-color: var(--primary);
    color: var(--light);
}

.highlight-icon-wrapper svg {
    width: 30px;
    height: 30px;
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

/* Featured Highlight Card (Center card: Reliable Supply) */
.highlight-card-featured {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.25) !important;
    animation: cardFloat 4s ease-in-out infinite;
}

.highlight-card-featured h3 {
    color: var(--dark) !important;
}

.highlight-card-featured p {
    color: rgba(15, 16, 21, 0.8) !important;
}

.highlight-card-featured .highlight-icon-wrapper {
    background-color: var(--primary-light) !important;
    color: var(--dark) !important;
}

.highlight-card-featured:hover {
    animation-play-state: paused;
    transform: translateY(-12px) scale(1.03) !important;
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.45) !important;
    border-color: var(--primary-hover) !important;
}

.highlight-card-featured:hover .highlight-icon-wrapper {
    background-color: var(--dark) !important;
    color: var(--primary) !important;
}

@keyframes cardFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Intro Section */
.intro-section {
    background-color: var(--gray-bg);
    padding: 6rem 2rem;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.intro-image-wrapper {
    position: relative;
}

.intro-image {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    background: white;
    padding: 1.5rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* About Page Specifics */
.about-section {
    padding: 6rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .title-decor {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-accent);
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
}

/* Global Presence Grid */
.presence-section {
    background-color: var(--gray-bg);
    padding: 6rem 2rem;
}

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

.presence-card {
    background: var(--light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gray-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.presence-card-double {
    grid-column: span 1;
}

/* Sub-locations grid for double card */
.presence-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-top: 1rem;
}

.presence-sub-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.presence-sub-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.5px;
}

.pres-pin {
    width: 14px;
    height: 14px;
    fill: var(--primary);
    flex-shrink: 0;
}

.presence-sub-text {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
    white-space: pre-line;
}

.presence-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary);
}

.presence-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.presence-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.presence-card:hover .presence-image-wrapper img {
    transform: scale(1.08);
}

.presence-info {
    padding: 2rem;
}

.presence-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.presence-info h3 svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
}

.presence-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    white-space: pre-line;
}

/* Services / Products Page Specifics */
.services-hero-section {
    padding: 6rem 2rem;
    background-color: var(--gray-bg);
}

.services-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.services-hero-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.services-hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.services-hero-image-wrapper {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
}

/* Machine Features Detail */
.features-section {
    padding: 6rem 2rem;
}

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

.feature-detail-card {
    border: 1px solid var(--gray-border);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    background: white;
    position: relative;
    overflow: hidden;
}

.feature-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.feature-detail-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--gray-border);
    transform: translateY(-3px);
}

.feature-detail-card:hover::before {
    height: 100%;
}

.feature-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.feature-detail-card:hover .feature-number {
    color: var(--primary);
}

.feature-detail-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-detail-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Specifications Table & Applications Section */
.spec-apps-section {
    background-color: var(--gray-bg);
    padding: 6rem 2rem;
}

.spec-apps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.spec-column, .apps-column {
    background: var(--light);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gray-border);
}

.spec-table-title, .apps-list-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid var(--gray-border);
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 0.9rem 0;
    font-size: 0.95rem;
}

.spec-key {
    font-weight: 600;
    color: var(--dark);
    width: 40%;
}

.spec-value {
    color: var(--text-muted);
}

.apps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.app-icon-wrapper {
    color: var(--primary);
    margin-top: 0.2rem;
}

.app-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.app-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

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

/* Gallery Page Specifics */
.gallery-section {
    padding: 6rem 2rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gray-border);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gray-border);
    transition: var(--transition-smooth);
}

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

.gallery-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-caption {
    padding: 1.5rem;
}

.gallery-item-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-item-title {
    font-size: 1.1rem;
    color: var(--dark);
}

/* Contact Page Specifics */
.contact-section {
    padding: 6rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-details-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: var(--gray-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--gray-border);
}

.contact-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-list-item-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--border-radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-list-item-icon svg {
    width: 18px;
    height: 18px;
}

.contact-list-item-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.contact-list-item-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-card {
    height: 300px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-soft);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-column {
    background: var(--light);
    padding: 3.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--gray-border);
}

.contact-form-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-accent);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font);
    font-size: 0.95rem;
    border: 1px solid var(--gray-border);
    background-color: var(--gray-bg);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--light);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-submit-status {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    display: none;
}

.contact-submit-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-submit-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ============================================ */

/* Prevent horizontal scroll on all viewports */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Tablet Breakpoint */
@media (max-width: 992px) {
    .hero-container,
    .intro-container,
    .about-container,
    .services-hero-container,
    .spec-apps-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-section {
        min-height: auto;
        padding: 4rem 1.5rem 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-description {
        margin: 0 auto 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-floating-card--top {
        right: 10px;
    }
    
    .hero-floating-card--bottom {
        left: 10px;
    }
    
    .hero-deco--ring-1,
    .hero-deco--ring-2,
    .hero-deco--line-v,
    .hero-deco--diamond,
    .hero-deco--dots {
        display: none;
    }
    
    /* Section titles */
    .section-title {
        font-size: 2rem;
    }
    
    /* Highlights, Presence, Features — 2 columns on tablet */
    .highlights-grid,
    .presence-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .presence-card-double {
        grid-column: span 2;
    }
    
    /* Gallery grid — smaller minmax */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    /* Services Hero */
    .services-hero-content h2 {
        font-size: 2.2rem;
    }
    
    /* Intro section */
    .intro-content h2 {
        font-size: 2rem;
    }
    
    /* About section */
    .about-content h2 {
        font-size: 2rem;
    }
    
    /* Spec table overflow scroll */
    .spec-column {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Footer — 2 columns on tablet */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    /* Section padding */
    .highlights-section,
    .intro-section,
    .about-section,
    .presence-section,
    .features-section,
    .spec-apps-section,
    .gallery-section,
    .contact-section {
        padding: 4rem 1.5rem;
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    /* Top bar */
    .top-contact-bar {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .top-contact-container {
        justify-content: center;
        gap: 0.3rem;
    }
    
    .top-contact-info {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--light);
        flex-direction: column;
        padding: 5rem 2rem 3rem;
        gap: 1.5rem;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-hard);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    /* Logo */
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .logo-icon-svg {
        width: 35px;
        height: 35px;
    }
    
    /* Hero */
    .hero-section {
        padding: 3rem 1rem 0;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .hero-marquee-band {
        margin-top: 2rem;
    }
    
    .marquee-item {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Highlights, Presence, Features — single column */
    .highlights-grid,
    .presence-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .presence-card-double {
        grid-column: span 1;
    }
    
    .presence-sub-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .highlight-card {
        padding: 2rem 1.5rem;
    }
    
    /* Gallery grid — single column on small screens */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .gallery-image-wrapper {
        height: 200px;
    }
    
    /* Services */
    .services-hero-content h2 {
        font-size: 1.8rem;
    }
    
    .services-hero-content h3 {
        font-size: 1.2rem;
    }
    
    .services-hero-text {
        font-size: 0.95rem;
    }
    
    .services-hero-image-wrapper {
        padding: 1rem;
    }
    
    /* Spec & Apps */
    .spec-column, .apps-column {
        padding: 1.5rem;
    }
    
    .spec-table-title, .apps-list-title {
        font-size: 1.2rem;
    }
    
    .spec-table td {
        font-size: 0.85rem;
        padding: 0.7rem 0;
    }
    
    .spec-key {
        width: 45%;
    }
    
    /* Intro */
    .intro-section {
        padding: 3rem 1rem;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-image {
        padding: 0.75rem;
    }
    
    /* About */
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-lead {
        font-size: 1rem;
    }
    
    .presence-image-wrapper {
        height: 160px;
    }
    
    /* Contact */
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-form-column {
        padding: 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.3rem;
    }
    
    .map-card {
        height: 220px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer {
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding-top: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    /* Top bar — hide on very small screens to save space */
    .top-contact-bar {
        display: none;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-badge-text {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .hero-badge {
        padding: 0.35rem 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.6rem;
    }
    
    .hero-stat-divider {
        height: 35px;
    }
    
    /* Section spacing */
    .section-title-wrapper {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    /* Feature cards */
    .feature-detail-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-number {
        font-size: 1.4rem;
    }
    
    .feature-detail-card h3 {
        font-size: 1.05rem;
    }
    
    /* Gallery */
    .gallery-image-wrapper {
        height: 180px;
    }
    
    .gallery-caption {
        padding: 1rem;
    }
    
    /* Contact */
    .contact-list-item-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-list-item-text h4 {
        font-size: 0.95rem;
    }
    
    .contact-list-item-text p {
        font-size: 0.85rem;
    }
}
