/* ========================================
   AQEEQ CORP - MODERN B2B DESIGN SYSTEM
   Premium Gold (#C9A961) + Navy (#1B3A52)
   Advanced Animations & Effects
   ======================================== */

:root {
    --gold: #C9A961;
    --gold-light: #E0C27A;
    --gold-dark: #B5954D;
    --navy: #1B3A52;
    --navy-dark: #0B1A28;
    --navy-light: #2A4A62;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --black: #000000;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 30px 50px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 8px 24px rgba(201, 169, 97, 0.3);
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-100);
    background: var(--navy-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-sm);
    color: var(--gray-300);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all var(--transition-base);
}

a:hover {
    color: var(--gold-light);
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: linear-gradient(180deg, rgba(27, 58, 82, 0.4) 0%, var(--navy-dark) 100%);
}

.section-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, rgba(201, 169, 97, 0.1) 100%);
    position: relative;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.15), transparent 60%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.section-header {
    margin-bottom: var(--space-2xl);
}

.section-header.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    padding: 0.5rem 1rem;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

/* LOADER */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 200px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(201, 169, 97, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.loader-bar-container {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-top: var(--space-lg);
    position: relative;
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% 100%;
    border-radius: var(--radius-full);
    width: 0%;
    animation: loadBar 2s ease-in-out forwards, shimmer-bar 1.5s linear infinite;
}

@keyframes loadBar {
    to { width: 100%; }
}

@keyframes shimmer-bar {
    to { background-position: 200% 0; }
}

/* HEADER - GLASSMORPHISM */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 26, 40, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

#header.scrolled {
    background: rgba(11, 26, 40, 0.95);
    backdrop-filter: blur(40px) saturate(200%);
    border-bottom: 1px solid var(--gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

#header .logo img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-base);
    filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.3));
}

#header .logo:hover img {
    transform: scale(1.05);
}

#nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

#nav a {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-300);
    padding: 0.5rem 1rem;
    position: relative;
    transition: all var(--transition-base);
}

#nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width var(--transition-base);
}

#nav a:hover,
#nav a.active {
    color: var(--gold);
}

#nav a:hover::before,
#nav a.active::before {
    width: 80%;
}

.btn-cta {
    padding: 0.75rem 1.5rem !important;
    background: linear-gradient(135deg, transparent, rgba(201, 169, 97, 0.1)) !important;
    border: 2px solid var(--gold) !important;
    color: var(--gold) !important;
    border-radius: var(--radius-md);
    transition: all var(--transition-base) !important;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left var(--transition-base);
    z-index: -1;
}

.btn-cta:hover::before {
    left: 0;
}

.btn-cta:hover {
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

#mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--space-xs);
    transition: transform var(--transition-base);
}

#mobile-toggle:hover {
    transform: scale(1.1);
}

/* HERO SECTION */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: url("hero-bg.jpg") center/cover no-repeat !important;
}
 background-image: url('hero-bg.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.75;        /* how visible the video is */
  filter: grayscale(25%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 58, 82, 0.9) 0%,
    rgba(11, 26, 40, 0.8) 50%,
    rgba(201, 169, 97, 0.15) 100%
  );
  pointer-events: none;
}
/* Old glow layer is no longer needed */
.hero-bg::before {
  display: none;
}
@keyframes ambient-glow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(27, 58, 82, 0.6);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

#hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-300);
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.catalog-link {
    display: inline-block;
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all var(--transition-base);
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.catalog-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--gold);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 15px); }
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left var(--transition-base);
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--navy);
    transform: translateY(-3px);
}

/* CORE CATEGORIES - MODERN CARDS */
.core-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.core-card {
    background: linear-gradient(145deg, rgba(27, 58, 82, 0.5) 0%, rgba(11, 26, 40, 0.8) 100%);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.core-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.core-card:hover::before {
    opacity: 1;
}

.core-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.core-card:hover::after {
    transform: scaleX(1);
}

.core-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(201, 169, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.core-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
    transition: all var(--transition-bounce);
    position: relative;
    z-index: 1;
}

.core-card:hover .core-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
    background: var(--gold);
    color: var(--navy);
}

.core-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.core-card p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.core-features {
    list-style: none;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.core-features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: var(--space-xs);
    padding: 0.5rem 0;
    transition: all var(--transition-base);
}

.core-card:hover .core-features li {
    transform: translateX(5px);
}

.core-features i {
    color: var(--gold);
    font-size: 0.75rem;
}

.core-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.core-card:hover .core-link {
    gap: var(--space-md);
}

/* TWO COLUMN LAYOUT */
.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
    align-items: start;
}

.col-text {
    padding: var(--space-lg);
}

.col-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(201, 169, 97, 0.05);
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.stat-card p {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.stat-card span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.why-points {
    margin-top: var(--space-lg);
}

.why-point {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.why-point:hover {
    transform: translateX(10px);
}

.why-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 1.5rem;
    transition: all var(--transition-base);
}

.why-point:hover .why-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1) rotate(5deg);
}

.why-point h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.why-point p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* BRAND MARQUEE */
#brands {
    padding: var(--space-xl) 0;
    background: rgba(27, 58, 82, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

#brands .section-header h2 {
  font-size: 1.7rem;         /* smaller heading */
  margin-bottom: var(--space-sm);
}

#brands .section-header p {
  font-size: 0.95rem;        /* smaller paragraph */
  max-width: 720px;
  margin: 0.25rem auto var(--space-md);
  color: var(--gray-400);
}

#brands .section-header {
  margin-bottom: var(--space-lg);  /* less vertical space */
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    white-space: nowrap;
    animation: scroll 40s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-base);
}

.marquee-content span:hover {
    color: var(--gold);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* PROCESS GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.process-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: var(--radius-lg);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    background: rgba(201, 169, 97, 0.05);
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: var(--space-md);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
    transition: all var(--transition-base);
}

.process-step:hover .process-number {
    transform: scale(1.15) rotate(360deg);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.process-step p {
    font-size: 0.938rem;
    color: var(--gray-400);
}

/* CTA SECTION */
.cta-content {
    text-align: center;
    padding: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

/* PAGE HERO */
.page-hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-2xl);
    text-align: center;
    background: linear-gradient(180deg, rgba(27, 58, 82, 0.6) 0%, var(--navy-dark) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.1), transparent 70%);
}

.page-hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* DIVISION DETAILS */
.division-detail {
    display: flex;
    gap: var(--space-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    transition: all var(--transition-base);
}

.division-detail:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.division-icon-lg {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: 3px solid var(--gold);
    border-radius: var(--radius-xl);
    font-size: 3.5rem;
    color: var(--gold);
    transition: all var(--transition-base);
}

.division-detail:hover .division-icon-lg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.division-content h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--gold);
}

.division-intro {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: var(--space-lg);
}

.division-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.category-block h4 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.category-block h4 i {
    color: var(--gold);
}

.category-block ul {
    list-style: none;
}

.category-block li {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-md);
    position: relative;
    transition: all var(--transition-base);
}

.category-block li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.category-block li:hover {
    color: var(--gold);
    padding-left: var(--space-lg);
}

.division-standards {
    padding: var(--space-md);
    background: rgba(201, 169, 97, 0.05);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--gray-300);
}

.division-standards strong {
    color: var(--gold);
}

/* INDUSTRY GRID */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.industry-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover {
    background: rgba(201, 169, 97, 0.05);
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.industry-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.industry-card:hover .industry-icon {
    transform: scale(1.15) rotate(-5deg);
    background: var(--gold);
    color: var(--navy);
}

.industry-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.industry-content p {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.industry-content h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.industry-content ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.industry-content li {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: var(--space-sm);
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.938rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: var(--space-sm);
    transition: all var(--transition-base);
}

.check-list li:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.check-list i {
    color: var(--gold);
    margin-top: 4px;
}

/* CATALOGUE GRID */
.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.catalogue-card {
    background: linear-gradient(145deg, rgba(27, 58, 82, 0.4) 0%, rgba(11, 26, 40, 0.7) 100%);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.catalogue-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.catalogue-card:hover::before {
    opacity: 1;
}

.catalogue-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.catalogue-card:hover::after {
    transform: translateX(100%);
}

.catalogue-card:hover {
    background: rgba(201, 169, 97, 0.05);
    border-color: var(--gold);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(201, 169, 97, 0.2);
}

.catalogue-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

.catalogue-card:hover .catalogue-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
    background: var(--gold);
    color: var(--navy);
}

.catalogue-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.catalogue-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.catalogue-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.catalogue-tags span {
    padding: 0.375rem 0.75rem;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--gold);
    transition: all var(--transition-base);
}

.catalogue-card:hover .catalogue-tags span {
    background: rgba(201, 169, 97, 0.2);
    border-color: var(--gold);
}

.catalogue-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    cursor: pointer;
    transition: gap var(--transition-base);
    position: relative;
    z-index: 1;
}

.catalogue-card:hover .catalogue-btn {
    gap: var(--space-md);
}

/* ALSO SUPPLY GRID */
.also-supply-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-md);
}

.supply-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--gray-300);
    transition: all var(--transition-base);
    cursor: pointer;
}

.supply-item:hover {
    background: rgba(201, 169, 97, 0.05);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.supply-item i {
    color: var(--gold);
    font-size: 0.625rem;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(15px);
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    overflow-y: auto;
    animation: slideInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 45px;
    height: 45px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 1.75rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(90deg);
}

/* VALUES GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(201, 169, 97, 0.1));
    transition: height 0.4s ease;
}

.value-card:hover::before {
    height: 100%;
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--gold);
    border-radius: var(--radius-full);
    font-size: 2rem;
    color: var(--gold);
    margin: 0 auto var(--space-md);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.15);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--gray-400);
    position: relative;
    z-index: 1;
}

/* LEADERSHIP */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

.leader-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    transition: all 0.6s ease;
}

.leader-card:hover::before {
    top: -50%;
    left: -50%;
}

.leader-card:hover {
    background: rgba(201, 169, 97, 0.05);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.leader-avatar {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: 3px solid var(--gold);
    border-radius: var(--radius-full);
    font-size: 3rem;
    color: var(--gold);
    margin: 0 auto var(--space-md);
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    position: relative;
    z-index: 1;
}

.leader-card:hover .leader-avatar {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}

.leader-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    position: relative;
    z-index: 1;
}

.leader-title {
    font-size: 0.875rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.leader-card p {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.leader-contact {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.5rem;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.leader-contact:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

/* CONTACT */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    transition: all var(--transition-base);
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    color: var(--gold);
    transition: all var(--transition-base);
}

.contact-item:hover .contact-icon {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: var(--gold);
}

.contact-item p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--gray-300);
}

.contact-item a {
    color: var(--gray-300);
    transition: color var(--transition-base);
}

.contact-item a:hover {
    color: var(--gold);
}

/* CONTACT FORM */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.938rem;
    color: var(--white);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.form-message {
    padding: var(--space-md);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    color: #22c55e;
    margin-top: var(--space-md);
}

.form-message i {
    margin-right: var(--space-xs);
}

/* MAP CONTAINER */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* FOOTER */
#footer {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.2));
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--gray-400);
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--space-sm);
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 1.25rem;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.footer-gst {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gold);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
    }
}

/* AOS ANIMATIONS */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* RESPONSIVE */
@media (max-width: 968px) {
    :root {
        --space-xl: 2rem;
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }
    
    #nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(11, 26, 40, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: var(--space-xl);
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        border-right: 1px solid var(--gold);
    }
    
    #nav.active {
        transform: translateX(0);
    }
    
    #mobile-toggle {
        display: block;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .two-col,
    .contact-wrapper,
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .division-detail {
        flex-direction: column;
    }
    
    .division-categories {
        grid-template-columns: 1fr;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .core-grid,
    .catalogue-grid,
    .also-supply-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-cta,
    .cta-buttons,
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    #hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .modal-content {
        padding: var(--space-lg);
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* PRINT STYLES */
@media print {
    #header,
    #footer,
    .whatsapp-float,
    .btn-primary,
    .btn-secondary,
    .scroll-indicator {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
