/* ============================================
   RAJENDRA GLOBAL CARE - MAIN STYLESHEET
   ============================================ */

/* CSS Variables - Black & Gold Theme */
:root {
    --color-black: #0a0a0a;
    --color-black-light: #111111;
    --color-black-medium: #1a1a1a;
    --color-black-soft: #222222;
    --color-black-lighter: #2a2a2a;

    --color-gold: #D4AF37;
    --color-gold-light: #E5C158;
    --color-gold-dark: #B8962E;
    --color-gold-pale: #F5E6B3;

    --color-white: #ffffff;
    --color-gray-100: #f8f8f8;
    --color-gray-200: #eeeeee;
    --color-gray-300: #dddddd;
    --color-gray-400: #aaaaaa;
    --color-gray-500: #888888;
    --color-gray-600: #666666;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);

    --container-max: 1200px;
    --container-padding: 2rem;

    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-300);
    background-color: var(--color-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-white);
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    z-index: 9999;
    border-radius: 0 0 8px 8px;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: background var(--transition-medium), box-shadow var(--transition-medium);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
}

.site-title:hover {
    color: var(--color-gold);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--color-gray-300);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-medium);
}

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

.nav-menu a:hover::after,
.nav-menu a:focus::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    position: relative;
    transition: background var(--transition-fast);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    transition: transform var(--transition-fast), top var(--transition-fast);
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-black) 0%, var(--color-black-light) 100%);
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.badge-icon {
    display: flex;
    color: var(--color-gold);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-gray-400);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
    color: var(--color-black);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--color-gold);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.hero-scroll a:hover {
    opacity: 1;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--color-black-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.15rem;
    color: var(--color-gray-200);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-gray-400);
}

.about-founder {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-black-medium);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.founder-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.founder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--color-gold);
    flex-shrink: 0;
}

.founder-name {
    display: block;
    font-weight: 600;
    color: var(--color-white);
    font-size: 1rem;
}

.founder-title {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gray-500);
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--color-black-medium) 0%, var(--color-black-soft) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-content {
    text-align: center;
    color: var(--color-gold);
    opacity: 0.6;
}

.placeholder-content svg {
    margin: 0 auto 1rem;
}

.placeholder-content span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    display: block;
}

.about-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-black);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.about-float-card .float-icon {
    color: var(--color-gold);
    display: flex;
}

.about-float-card .float-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
}

.card-1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -10px;
    animation-delay: 1.5s;
}

/* ============================================
   VISION & MISSION SECTION
   ============================================ */
.vision-mission-section {
    background: var(--color-black);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-card {
    background: var(--color-black-light);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.vm-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.vm-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.vm-text {
    color: var(--color-gray-400);
    font-size: 1.05rem;
    line-height: 1.8;
}

.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-gray-400);
    line-height: 1.7;
}

.vm-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    background: var(--color-black-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.value-card {
    background: var(--color-black-medium);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: all var(--transition-medium);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-gold);
}

.value-card.wide {
    grid-column: span 2;
    text-align: left;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin: 0 auto 1.25rem;
}

.value-card.wide .value-icon {
    margin: 0 0 1.25rem 0;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    margin: 0;
    line-height: 1.6;
}

/* Values Quote */
.values-quote {
    text-align: center;
}

.values-quote blockquote {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: -1rem;
}

.values-quote p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.values-quote cite {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    font-style: normal;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section {
    background: var(--color-black);
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.brand-card {
    background: var(--color-black-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.brand-header {
    padding: 2.5rem 2.5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.brand-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-gold);
}

.brand-logo.brand-nodarex {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

.brand-initial {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
}

.brand-name {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.brand-tag {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-body {
    padding: 2rem 2.5rem 2.5rem;
}

.brand-desc {
    color: var(--color-gray-400);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.brand-products h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-black-medium);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.05);
    transition: border-color var(--transition-fast);
}

.product-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.product-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.product-icon img{
	border-radius: 10px;
}

.product-name {
    display: block;
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.product-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gray-500);
    line-height: 1.5;
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */
.commitment-section {
    background: var(--color-black-light);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.commitment-item {
    background: var(--color-black-medium);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.commitment-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.25);
}

.commitment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.commitment-item:hover::before {
    transform: scaleX(1);
}

.commitment-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.commitment-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.commitment-content p {
    color: var(--color-gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-black-medium) 0%, var(--color-black-soft) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--color-gray-400);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: var(--color-gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--color-black-medium);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    transition: all var(--transition-fast);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-widget-area .widget-title {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
}

.footer-widget-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-widget-area a {
    color: var(--color-gray-500);
    font-size: 0.95rem;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: inline-block;
}

.footer-widget-area a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    text-align: center;
}

.copyright {
    color: var(--color-gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   PAGE HEADER & BREADCRUMB
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--color-black-light) 0%, var(--color-black-medium) 100%);
    padding: calc(var(--header-height) + 3rem) 0 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

.breadcrumb a {
    color: var(--color-gray-400);
}

.breadcrumb a:hover {
    color: var(--color-gold);
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    color: var(--color-gold);
}

.breadcrumb .current {
    color: var(--color-gold);
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0;
}

/* ============================================
   CONTENT AREA
   ============================================ */
.content-area {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    padding: 3rem 0;
}

.primary {
    min-width: 0;
}

.widget-area {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    height: fit-content;
}

.widget-area .widget {
    background: var(--color-black-light);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
}

/* ============================================
   POSTS GRID (Blog)
   ============================================ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.post-card {
    background: var(--color-black-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.post-thumbnail img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.entry-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.entry-title a {
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.entry-title a:hover {
    color: var(--color-gold);
}

.entry-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-gray-500);
    margin-bottom: 1rem;
}

.entry-summary {
    color: var(--color-gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-gold);
}

.read-more svg {
    transition: transform var(--transition-fast);
}

.read-more:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-links a,
.nav-links span {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.nav-links a {
    color: var(--color-gray-400);
    background: var(--color-black-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-links a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.nav-links .current {
    background: var(--color-gold);
    color: var(--color-black);
}

/* ============================================
   SINGLE POST
   ============================================ */
.single-post .post-thumbnail {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.single-post .post-thumbnail img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
}

.single-post .entry-header {
    margin-bottom: 2rem;
}

.single-post .entry-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.single-post .entry-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-gray-300);
}

.single-post .entry-content h2,
.single-post .entry-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.single-post .entry-content p {
    margin-bottom: 1.5rem;
}

.single-post .entry-content blockquote {
    border-left: 4px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-gray-400);
}

.single-post .entry-content img {
    border-radius: 12px;
    margin: 2rem 0;
}

.entry-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags a {
    padding: 0.4rem 1rem;
    background: var(--color-black-medium);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-gray-400);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-fast);
}

.tags a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 1.5rem;
    background: var(--color-black-light);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: all var(--transition-fast);
}

.nav-previous a:hover,
.nav-next a:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}

.nav-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-weight: 600;
    color: var(--color-white);
    font-size: 1rem;
}

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-thumbnail {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.page-thumbnail img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-gray-300);
}

.entry-content h2,
.entry-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content a {
    color: var(--color-gold);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: border-color var(--transition-fast);
}

.entry-content a:hover {
    border-color: var(--color-gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

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

    .value-card.wide {
        grid-column: span 2;
    }

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

    .content-area {
        grid-template-columns: 1fr;
    }

    .widget-area {
        position: static;
        order: -1;
    }

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

    .footer-brand {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-widgets {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
        --header-height: 70px;
    }

    section {
        padding: 4rem 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
		height: 280px;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-medium), visibility var(--transition-medium);
        padding: 2rem;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .value-card.wide {
        grid-column: span 1;
    }

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

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

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-float-card {
        display: none;
    }

    .about-founder {
        flex-direction: column;
    }

    .founder-card {
        width: 100%;
    }
}

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

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .vm-card {
        padding: 2rem;
    }

    .brand-header,
    .brand-body {
        padding: 1.5rem;
    }

    .commitment-item {
        padding: 1.5rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .hero-scroll,
    .hero-cta,
    .cta-section {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
    }
}
