/* ==========================================
   Triple A (AAA) - Landing Page Styles
   Colors: Green & Gold
   ========================================== */

/* ==========================================
   CSS Variables
   ========================================== */
:root {
    /* Brand Colors - Deep Velvet */
    --primary-green: #0a2f23;
    --primary-green-dark: #051a15;
    --primary-green-light: #0f3d2a;
    --velvet-green: #083d2b;
    --velvet-green-deep: #062318;
    --accent-gold: #d4af37;
    --accent-gold-light: #f0d674;
    --accent-gold-dark: #b8941f;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-gray: #e5e5e5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --black: #000000;
    
    /* Gradients - Velvet Effect */
    --gradient-green: linear-gradient(135deg, var(--primary-green) 0%, var(--velvet-green) 30%, var(--primary-green-dark) 70%, var(--primary-green-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    --gradient-hero: radial-gradient(ellipse at center top, rgba(10, 47, 35, 0.95) 0%, rgba(8, 61, 43, 0.98) 30%, rgba(5, 26, 21, 0.99) 70%, rgba(6, 35, 24, 1) 100%);
    --gradient-velvet: linear-gradient(145deg, var(--velvet-green-deep) 0%, var(--primary-green) 25%, var(--velvet-green) 50%, var(--primary-green-dark) 75%, var(--primary-green-light) 100%);
    
    /* Typography - Latin Engraving Style */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Cinzel', 'Times New Roman', serif;
    --font-engraving: 'Trajan Pro', 'Cinzel', 'Times New Roman', serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    background-color: var(--white);
    position: relative;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

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

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

ul {
    list-style: none;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100vw;
    background-color: rgba(10, 47, 35, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.brand-name {
    font-family: var(--font-engraving);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    font-style: italic;
    text-shadow: 1px 1px 5px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

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

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

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    max-width: 40px;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--accent-gold);
    transition: all 0.3s ease;
    transform-origin: center;
    left: 50%;
    margin-left: -12.5px;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 12px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 19px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 26px;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #133529 0%, #0c241b 55%, #071910 100%);
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 25%, rgba(28, 76, 57, 0.35) 0%, rgba(28, 76, 57, 0.15) 35%, transparent 65%),
                radial-gradient(circle at 70% 80%, rgba(4, 18, 14, 0.6) 0%, rgba(4, 18, 14, 0.4) 45%, transparent 80%);
    mix-blend-mode: multiply;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(9, 27, 20, 0.55) 0%, rgba(9, 27, 20, 0.85) 90%);
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 40px 60px;
}


@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
    position: relative;
}

.title-main {
    font-family: var(--font-engraving);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 6px;
    text-shadow: 3px 3px 20px rgba(212, 175, 55, 0.4);
    font-style: italic;
    transform: perspective(1000px) rotateX(-3deg);
    padding-bottom: 15px;
    position: relative;
}

.title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 20%, var(--accent-gold-light) 50%, var(--accent-gold) 80%, transparent 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.title-subtitle {
    font-family: var(--font-engraving);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 4px;
    font-style: italic;
    transform: perspective(1000px) rotateX(2deg);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--accent-gold-light);
    margin-bottom: 50px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.5s both;
    padding: 28px 48px;
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.55);
    background: linear-gradient(135deg, rgba(18, 44, 34, 0.85) 0%, rgba(7, 20, 15, 0.8) 100%);
    box-shadow: 0 35px 80px rgba(7, 21, 16, 0.45);
    text-align: center;
}

.hero-values {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}

.value-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gradient-gold);
    color: var(--primary-green-dark);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease 0.9s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    animation: fadeIn 1s ease 1.5s both;
}

.scroll-arrow {
    width: 18px;
    height: 32px;
    position: relative;
    animation: arrowBounce 2s ease-in-out infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 18px;
    background: var(--accent-gold);
    border-radius: 1px;
    opacity: 0.8;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 12px;
    height: 12px;
    border-left: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    border-radius: 2px;
    opacity: 0.9;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* ==========================================
   Section Styles
   ========================================== */
section {
    padding: var(--section-padding) 0;
    scroll-margin-top: 90px; /* Account for fixed navbar */
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-engraving);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-style: italic;
    transform: perspective(1000px) rotateX(-1deg);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    background: linear-gradient(180deg, #f9faf8 0%, #ffffff 100%);
    position: relative;
    z-index: 2;
    padding: 100px 0 120px;
}

.about-intro {
    margin: 0 auto 80px;
    text-align: center;
    color: var(--primary-green-dark);
}

.about-main-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-text-main {
    font-size: 1.35rem;
    line-height: 2;
    color: rgba(13, 47, 35, 0.92);
    margin: 0 auto 25px;
    font-weight: 500;
    letter-spacing: 0.35px;
    font-family: var(--font-engraving);
    font-style: italic;
}

.intro-text-main::after {
    content: '';
    display: block;
    width: 140px;
    height: 2px;
    margin: 32px auto 0;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.8) 50%, transparent 100%);
}

.intro-text-main strong {
    color: var(--accent-gold-dark);
    font-weight: 700;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(34, 53, 47, 0.9);
    margin: 0 auto 22px;
    letter-spacing: 0.25px;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.intro-text strong {
    color: var(--primary-green);
    font-weight: 700;
}

.triple-a-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.a-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.a-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.a-card.featured {
    background: var(--gradient-green);
    color: var(--white);
}

.a-card.featured .card-title,
.a-card.featured .card-description {
    color: var(--white);
}

.a-card.featured .card-icon svg {
    color: var(--accent-gold);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-gold);
}

.card-title {
    font-family: var(--font-engraving);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 2px;
    font-style: italic;
}

.card-concepts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 28px;
}

.concept-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid var(--accent-gold);
}

.a-card.featured .concept-badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
}

.card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    text-align: center;
}

/* Values Section */
.values-section {
    background: var(--gradient-green);
    padding: 80px 60px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(26, 77, 62, 0.2);
}

.values-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    color: var(--white);
}

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    transition: var(--transition-smooth);
}

.value-item:hover .value-icon-wrapper {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.value-icon-wrapper svg {
    width: 100%;
    height: 100%;
    color: var(--accent-gold);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-gold-light);
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   Value We Bring Section
   ========================================== */
.value-we-bring {
    background: var(--gradient-green);
    color: var(--white);
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.value-we-bring .section-title {
    color: var(--accent-gold);
}

.value-we-bring .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.value-timeline {
    margin: 0 auto 60px;
    position: relative;
    padding: 40px 0;
}

.value-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gold);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border: 4px solid var(--primary-green);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.3);
    background: var(--accent-gold-light);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.timeline-content {
    width: calc(50% - 40px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    transform: scale(1.03);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Value Highlight */
.ethical-highlight {
    margin: 80px auto 0;
    padding: 0;
    text-align: center;
    max-width: 900px;
    position: relative;
}

.ethical-highlight-icon {
    display: none;
}

.ethical-highlight-text h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.5px;
    color: var(--primary-green-dark);
    text-transform: none;
    margin: 0 0 30px;
    line-height: 1.7;
    position: relative;
    padding-bottom: 25px;
}

.ethical-highlight-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--accent-gold);
}

.ethical-highlight-text p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
}

/* ==========================================
   Ethical Investment Section
   ========================================== */
.ethical-investment {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.ethical-content {
    margin: 0 auto;
}

.ethical-intro {
    text-align: center;
    margin-bottom: 50px;
}

.ethical-intro .intro-text:last-child {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-green-dark);
}

.intro-text.principles-text {
    font-size: 1.2rem !important;
    line-height: 2 !important;
    font-weight: 600 !important;
    color: var(--primary-green-dark) !important;
    margin: 40px auto 50px !important;
    padding: 35px 50px !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    letter-spacing: 0.3px !important;
}

.intro-text.principles-text strong {
    color: var(--accent-gold-dark) !important;
    font-weight: 700 !important;
    font-size: 1.1em !important;
    letter-spacing: 0.5px !important;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.principle-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    text-align: center;
    border: 2px solid transparent;
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.principle-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.principle-card:hover .principle-icon {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.2);
}

.principle-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-gold);
}

.principle-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 15px;
}

.principle-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

.meaning-section, .bee-philosophy {
    margin-bottom: 60px;
}

.aaa-explanation {
    position: relative;
    text-align: center;
    margin: 90px auto 40px;
    padding: 45px 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 35px 65px rgba(212, 175, 55, 0.18);
}

.aaa-explanation::before {
    content: '';
    position: absolute;
    top: -46px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.85) 50%, transparent 100%);
}

.aaa-explanation p {
    font-size: 1.12rem;
    line-height: 1.9;
    color: rgba(28, 62, 48, 0.95);
    letter-spacing: 0.25px;
    font-family: var(--font-display);
}

.philosophy-content {
    margin: 0 auto;
}

.philosophy-timeline {
    margin-top: 60px;
    position: relative;
    padding-bottom: 110px;
}

.timeline-wrapper {
    position: relative;
    padding: 10px 0;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(212, 175, 55, 0) 0%, 
        rgba(212, 175, 55, 0.4) 10%,
        rgba(212, 175, 55, 0.95) 30%, 
        rgba(240, 214, 116, 1) 50%,
        rgba(212, 175, 55, 0.95) 70%, 
        rgba(212, 175, 55, 0.4) 90%,
        rgba(212, 175, 55, 0) 100%);
    pointer-events: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.timeline-entry {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    column-gap: 60px;
    align-items: center;
    margin-bottom: 90px;
    position: relative;
}

.timeline-entry:last-of-type {
    margin-bottom: 0;
}

.entry-node {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.entry-node span {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0d674 0%, #d4af37 50%, #b8941f 100%);
    color: var(--primary-green-dark);
    font-family: var(--font-engraving);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1.5px;
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.6), 
        0 25px 50px rgba(212, 175, 55, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(240, 214, 116, 0.5);
    animation: pulse-glow 3s ease-in-out infinite;
}

.entry-node span:hover {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 
        0 0 50px rgba(212, 175, 55, 0.8), 
        0 30px 60px rgba(212, 175, 55, 0.5),
        inset 0 2px 6px rgba(255, 255, 255, 0.4);
    animation: none;
}

.entry-node span::before {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.25) 0%, 
        rgba(212, 175, 55, 0.1) 40%,
        rgba(212, 175, 55, 0) 70%);
    z-index: -1;
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.entry-content {
    background: linear-gradient(155deg, rgba(19, 45, 34, 0.95) 0%, rgba(8, 22, 17, 0.92) 100%);
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 26px;
    padding: 42px 48px;
    color: rgba(233, 236, 233, 0.94);
    box-shadow: 0 40px 110px rgba(7, 21, 16, 0.55);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    line-height: 1.9;
    grid-row: 1;
}

.entry-content:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.75);
    box-shadow: 0 55px 140px rgba(8, 24, 18, 0.65);
}

.timeline-entry.left .entry-content {
    grid-column: 1;
    justify-self: end;
    text-align: left;
}

.timeline-entry.right .entry-content {
    grid-column: 3;
    justify-self: start;
    text-align: left;
}


.timeline-entry.bottom {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.timeline-entry.bottom .entry-node {
    margin-bottom: 50px;
}

.timeline-entry.bottom .entry-content {
    width: 100%;
    text-align: left;
    justify-self: center;
}

.entry-content.expanded {
    padding: 50px 60px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 50px 120px rgba(7, 21, 16, 0.6),
        0 0 50px rgba(212, 175, 55, 0.2);
    margin: 0 auto;
}

.timeline-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(240, 242, 240, 0.94);
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.timeline-text:last-child {
    margin-bottom: 0;
}

/* Убираем все переопределения для карточки 4 */

.timeline-heading {
    font-family: var(--font-engraving);
    font-size: 1.9rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 1.8px;
    margin: 0;
    color: var(--accent-gold-light);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #f0d674 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-subheading {
    font-family: var(--font-engraving);
    font-size: 1.45rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--accent-gold-light);
    margin-bottom: 24px;
    text-align: center;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.25),
        0 0 15px rgba(212, 175, 55, 0.25);
}

@media (max-width: 1200px) {
    .timeline-entry {
        grid-template-columns: 1fr 100px 1fr;
        column-gap: 40px;
    }

}

@media (max-width: 992px) {
    .philosophy-timeline {
        padding-left: 28px;
    }

    .timeline-track {
        left: 28px;
        transform: none;
    }

    .timeline-entry {
        grid-template-columns: 80px 1fr;
        column-gap: 30px;
        align-items: center;
        margin-bottom: 70px;
    }

    .entry-node {
        grid-column: 1;
        grid-row: 1;
    }

    .timeline-entry.left .entry-content,
    .timeline-entry.right .entry-content {
        grid-column: 2;
        grid-row: 1;
        justify-self: stretch;
        max-width: 100%;
        text-align: left;
    }
    
    .timeline-entry.bottom {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        grid-template-columns: unset;
        justify-content: center;
    }
    
    .timeline-entry.bottom .entry-node {
        margin-bottom: 40px;
        grid-column: unset;
        grid-row: unset;
    }
    
    .timeline-entry.bottom .entry-content {
        max-width: 100%;
        width: 100%;
        grid-column: unset;
        grid-row: unset;
        justify-self: center;
    }
}

@media (max-width: 640px) {
    .philosophy-timeline {
        padding-left: 0;
    }

    .timeline-track {
        left: 35px;
        transform: none;
    }

    .timeline-entry {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .entry-node {
        width: 70px;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .entry-content {
        flex: 1;
    }
    
    .timeline-entry.left .entry-node {
        order: 1;
    }
    
    .timeline-entry.left .entry-content {
        order: 2;
    }
    
    .timeline-entry.right .entry-node {
        order: 2;
    }
    
    .timeline-entry.right .entry-content {
        order: 1;
    }
    
    .entry-content {
        padding: 30px 26px;
    }
    
    .entry-content.expanded {
        padding: 35px 30px;
    }
    
    .entry-node span {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }

    .timeline-heading {
        font-size: 1.46rem;
        letter-spacing: 1.2px;
    }

    .timeline-subheading {
        font-size: 1.18rem;
    }
    
    .timeline-entry.bottom {
        display: flex;
        flex-direction: column;
        margin-top: 0;
        margin-bottom: 40px;
        position: relative;
        padding-top: 90px;
    }
    
    .timeline-entry.bottom .entry-node {
        position: absolute;
        left: 5px;
        top: 0;
        margin-bottom: 0;
        width: 60px;
    }
    
    .timeline-entry.bottom .entry-content {
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================
   Focus Section
   ========================================== */
.focus {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

/* Simple list layout for Focus Areas */
.focus-simple-list {
    margin: 0 auto;
}

.focus-simple-item {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.focus-simple-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.focus-simple-number {
    font-family: var(--font-engraving);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.4),
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.2);
}

.focus-simple-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.focus-simple-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 25px;
}

.focus-simple-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.focus-simple-points li {
    font-size: 1rem;
    color: var(--primary-green);
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.focus-simple-points li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.focus-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Unique styles for different focus areas */
.focus-card:nth-child(1) {
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
    border-top: 4px solid #28a745;
}

.focus-card:nth-child(2) {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    border-top: 4px solid #2196f3;
}

.focus-card:nth-child(3) {
    background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
    border-top: 4px solid #ff9800;
}

.focus-card:nth-child(4) {
    background: linear-gradient(135deg, #f3e5f5 0%, #ffffff 100%);
    border-top: 4px solid #9c27b0;
}

.focus-card:nth-child(5) {
    background: linear-gradient(135deg, #ffebee 0%, #ffffff 100%);
    border-top: 4px solid #f44336;
}

.focus-card:nth-child(6) {
    background: linear-gradient(135deg, #e0f2f1 0%, #ffffff 100%);
    border-top: 4px solid #009688;
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 0.05;
    transition: var(--transition-smooth);
    z-index: 1;
}

.focus-card:nth-child(1)::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%2328a745" stroke-width="2"/><path d="M30 50h40M50 30v40" stroke="%2328a745" stroke-width="2"/></svg>');
}

.focus-card:nth-child(2)::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="80" height="80" fill="none" stroke="%232196f3" stroke-width="2"/><path d="M25 50h50M50 25v50" stroke="%232196f3" stroke-width="1"/></svg>');
}

.focus-card:nth-child(3)::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="none" stroke="%23ff9800" stroke-width="2"/></svg>');
}

.focus-card:nth-child(4)::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 L90 50 L50 90 L10 50 Z" fill="none" stroke="%239c27b0" stroke-width="2"/></svg>');
}

.focus-card:nth-child(5)::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,5 60,35 95,35 68,57 78,87 50,70 22,87 32,57 5,35 40,35" fill="none" stroke="%23f44336" stroke-width="2"/></svg>');
}

.focus-card:nth-child(6)::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 C70 20, 80 40, 70 60 C60 80, 40 80, 30 60 C20 40, 30 20, 50 10 Z" fill="none" stroke="%23009688" stroke-width="2"/></svg>');
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.focus-card:hover::before {
    opacity: 0.15;
    transform: scale(1.1) rotate(5deg);
}

.focus-card:hover .focus-icon {
    transform: scale(1.1) rotate(5deg);
}

.focus-card:nth-child(1):hover .focus-icon {
    background: rgba(40, 167, 69, 0.2);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.focus-card:nth-child(2):hover .focus-icon {
    background: rgba(33, 150, 243, 0.2);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.focus-card:nth-child(3):hover .focus-icon {
    background: rgba(255, 152, 0, 0.2);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

.focus-card:nth-child(4):hover .focus-icon {
    background: rgba(156, 39, 176, 0.2);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.3);
}

.focus-card:nth-child(5):hover .focus-icon {
    background: rgba(244, 67, 54, 0.2);
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.3);
}

.focus-card:nth-child(6):hover .focus-icon {
    background: rgba(0, 150, 136, 0.2);
    box-shadow: 0 8px 25px rgba(0, 150, 136, 0.3);
}

/* Focus card header with icon and number */
.focus-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.focus-icon {
    width: 60px;
    height: 60px;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.focus-card:nth-child(1) .focus-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.focus-card:nth-child(2) .focus-icon {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
}

.focus-card:nth-child(3) .focus-icon {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.focus-card:nth-child(4) .focus-icon {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.focus-card:nth-child(5) .focus-icon {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.focus-card:nth-child(6) .focus-icon {
    background: rgba(0, 150, 136, 0.1);
    color: #009688;
}

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

.focus-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.3;
    line-height: 1;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-card:nth-child(1) .focus-number {
    color: #28a745;
}

.focus-card:nth-child(2) .focus-number {
    color: #2196f3;
}

.focus-card:nth-child(3) .focus-number {
    color: #ff9800;
}

.focus-card:nth-child(4) .focus-number {
    color: #9c27b0;
}

.focus-card:nth-child(5) .focus-number {
    color: #f44336;
}

.focus-card:nth-child(6) .focus-number {
    color: #009688;
}

.focus-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.focus-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 25px;
}

.focus-list {
    list-style: none;
    padding: 0;
}

.focus-list li {
    font-size: 1rem;
    color: var(--dark-gray);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.focus-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* ==========================================
   Values Section Main
   ========================================== */
.values-section-main {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 50%, var(--off-white) 100%);
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.values-simple-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

.value-simple-card {
    background: var(--gradient-green);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 42px 48px;
    box-shadow: 0 10px 40px rgba(26, 77, 62, 0.25);
    transition: var(--transition-smooth);
}

.value-simple-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 50px rgba(26, 77, 62, 0.35);
}

.value-simple-title {
    font-family: var(--font-engraving);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.value-simple-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.value-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-gold);
}

.value-card:nth-child(1) {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    border-left: 4px solid var(--accent-gold);
}

.value-card:nth-child(2) {
    background: var(--gradient-green);
}

.value-card:nth-child(3) {
    background: linear-gradient(135deg, #f3e5f5 0%, #ffffff 100%);
    border-left: 4px solid #9c27b0;
}

.value-card:nth-child(4) {
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
    border-left: 4px solid #4caf50;
}

.value-card:nth-child(2) .value-card-title,
.value-card:nth-child(2) .value-card-subtitle,
.value-card:nth-child(2) .value-description,
.value-card:nth-child(2) strong,
.value-card:nth-child(2) p {
    color: var(--white);
}

.value-card:nth-child(2) .value-icon-large svg,
.value-card:nth-child(2) .feature-icon {
    color: var(--accent-gold);
}

.value-card-header {
    padding: 35px 25px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
}

.value-card:nth-child(2) .value-card-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.value-icon-large {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon-large {
    transform: scale(1.1) rotate(5deg);
    background: rgba(212, 175, 55, 0.2);
}

.value-card:nth-child(2) .value-icon-large {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold-light);
}

.value-icon-large svg {
    width: 100%;
    height: 100%;
    color: var(--accent-gold);
}

.value-card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.value-card-subtitle {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
    font-style: italic;
}

.value-card:nth-child(2) .value-card-subtitle {
    color: var(--accent-gold-light);
}

.value-card-body {
    padding: 20px 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.value-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 20px;
    text-align: left;
}

.value-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.value-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.value-features strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 3px;
}

.value-features p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--medium-gray);
    margin: 0;
}

/* AAA Rating Banner */
.aaa-rating-banner {
    background: var(--gradient-green);
    padding: 40px 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(26, 77, 62, 0.25);
    margin: 0 auto;
}

.rating-banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.rating-icon {
    flex-shrink: 0;
}

.aaa-large {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 8px;
    text-shadow: 2px 2px 20px rgba(212, 175, 55, 0.3);
    display: block;
    line-height: 1;
}

.rating-text {
    color: var(--white);
}

.rating-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold-light);
    margin-bottom: 12px;
}

.rating-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    background: var(--gradient-green);
    color: var(--white);
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.contact .section-header {
    margin-bottom: 60px;
}

.contact .section-title {
    color: var(--accent-gold);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}



.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}


.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-item svg {
    width: 30px;
    height: 30px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold-light);
    margin-bottom: 5px;
}

.detail-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.rating-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--accent-gold);
    text-align: center;
    backdrop-filter: blur(10px);
}

.badge-icon {
    margin-bottom: 15px;
}

.aaa-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 5px;
}

.rating-badge p {
    font-family: var(--font-engraving);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 6px;
    text-shadow: 3px 3px 20px rgba(212, 175, 55, 0.4);
    font-style: italic;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-green-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Validation Styles */
.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message::before {
    content: '⚠';
    font-size: 1rem;
}

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

.submit-button {
    grid-column: 1 / -1;
    padding: 18px 40px;
    background: var(--gradient-gold);
    color: var(--primary-green-dark);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button svg {
    width: 24px;
    height: 24px;
    transition: var(--transition-fast);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.submit-button:hover svg {
    transform: translateX(5px);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.submit-button:disabled:hover {
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

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

/* ==========================================
   Language Switcher
   ========================================== */
.language-switcher {
    margin-left: 20px;
}

.lang-btn {
    background: rgba(13, 61, 47, 0.2);
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    padding: 8px 15px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-green-dark);
    transform: translateY(-2px);
}

.lang-current {
    color: var(--accent-gold);
    font-weight: 700;
}

.lang-btn:hover .lang-current {
    color: var(--primary-green-dark);
}

.lang-divider {
    color: var(--accent-gold);
    opacity: 0.6;
}

.lang-btn:hover .lang-divider {
    color: var(--primary-green-dark);
    opacity: 0.6;
}

.lang-option {
    opacity: 0.7;
}

.lang-btn:hover .lang-option {
    color: var(--primary-green-dark);
    opacity: 0.8;
}

/* Success message overlay backdrop */
.form-success-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-success-backdrop.show {
    display: block;
    opacity: 1;
}

.form-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 20px;
}

.form-success.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success svg {
    width: 60px;
    height: 60px;
    color: var(--accent-gold);
    animation: checkmarkDraw 0.6s ease-out 0.3s both;
}

@keyframes checkmarkDraw {
    0% {
        stroke-dasharray: 0 50;
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dasharray: 50 0;
        stroke-dashoffset: 0;
    }
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-green-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.form-success p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ==========================================
   Toast Notifications
   ========================================== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    width: calc(100% - 40px);
    pointer-events: none;
}

.toast {
    background: var(--white);
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    border-left: 4px solid;
    animation: toastSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

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

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.hide {
    animation: toastSlideOut 0.3s ease-in forwards;
}

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

.toast.toast-success {
    border-left-color: #27ae60;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
}

.toast.toast-error {
    border-left-color: #e74c3c;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
}

.toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.toast.toast-success .toast-icon {
    color: #27ae60;
}

.toast.toast-error .toast-icon {
    color: #e74c3c;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--primary-green-dark);
}

.toast-message {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
    word-wrap: break-word;
}

.toast-close {
    background: none;
    border: none;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    margin-top: 2px;
}

.toast-close:hover {
    color: var(--primary-green-dark);
}

.toast-close svg {
    width: 16px;
    height: 16px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: linear-gradient(180deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-gold);
}

.footer-tagline {
    color: var(--accent-gold-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badges .badge {
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid var(--accent-gold);
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Large Desktop (max-width: 1400px) */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
        padding: 0 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
    
    section {
        padding: 70px 0 !important;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .triple-a-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .focus-simple-points {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .focus-simple-title {
        font-size: 1.5rem;
    }
    
    .focus-simple-text {
        font-size: 1rem;
    }
    
    .values-simple-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-simple-card {
        padding: 35px 30px;
    }
    
    .value-simple-title {
        font-size: 1.3rem;
    }
    
    .value-simple-text {
        font-size: 1rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Value Timeline Mobile */
    .value-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
        text-align: left !important;
    }
    
    /* New Sections Tablet Responsive */
    .partnerships-highlight {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
    }
    
    .partnerships-highlight h3 {
        text-align: center;
        font-size: 1.4rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .deliver-list li {
        font-size: 1rem;
    }
    
    .value-highlight {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .highlight-text h3 {
        font-size: 1.6rem;
    }
    
    .highlight-text p {
        font-size: 1rem;
    }
    
    .rating-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile (max-width: 1025px) */
@media (max-width: 1025px) {
    :root {
        --section-padding: 60px;
    }
    
    html {
        font-size: 14px;
    }
    
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 25px;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--primary-green-dark);
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 70px);
        padding: 30px;
        gap: 20px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .navbar {
        height: auto;
        min-height: 70px;
        max-width: 100vw;
        overflow: visible;
    }
    
    .navbar .container {
        padding: 15px 20px;
        max-width: 100%;
        overflow: visible;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        position: fixed !important;
        top: 20px !important;
        right: clamp(10px, 4vw, 20px) !important;
        left: auto !important;
        transform: none !important;
        width: 40px !important;
        height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        z-index: 1001 !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
        will-change: transform;
    }
    
    @media (max-width: 480px) {
        .mobile-menu-toggle {
            right: clamp(10px, 3vw, 15px) !important;
            top: 20px !important;
            width: 35px !important;
            height: 35px !important;
            max-width: 35px !important;
            max-height: 35px !important;
        }
        
        .mobile-menu-toggle span {
            width: 20px !important;
            margin-left: -10px !important;
        }
    }
    
    @media (max-width: 360px) {
        .mobile-menu-toggle {
            right: 10px !important;
            top: 18px !important;
            width: 32px !important;
            height: 32px !important;
            max-width: 32px !important;
            max-height: 32px !important;
        }
        
        .mobile-menu-toggle span {
            width: 18px !important;
            margin-left: -9px !important;
        }
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        top: 19px !important;
        transform: rotate(45deg) !important;
        left: 50% !important;
        margin-left: -12.5px !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        top: 19px !important;
        transform: rotate(-45deg) !important;
        left: 50% !important;
        margin-left: -12.5px !important;
    }
    
    .mobile-menu-toggle.active {
        transform: none !important;
        right: clamp(10px, 4vw, 20px) !important;
        top: 20px !important;
        left: auto !important;
    }
    
    @media (max-width: 480px) {
        .mobile-menu-toggle.active {
            right: clamp(10px, 3vw, 15px) !important;
        }
        
        .mobile-menu-toggle.active span:nth-child(1),
        .mobile-menu-toggle.active span:nth-child(3) {
            margin-left: -10px !important;
        }
    }
    
    @media (max-width: 360px) {
        .mobile-menu-toggle.active {
            right: 10px !important;
        }
        
        .mobile-menu-toggle.active span:nth-child(1),
        .mobile-menu-toggle.active span:nth-child(3) {
            margin-left: -9px !important;
        }
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }
    
    .lang-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .title-main {
        font-size: 3rem;
        padding-bottom: 12px;
    }
    
    .title-main::after {
        width: 150px;
    }
    
    .title-subtitle {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .a-card, .leader-card, .principle-card {
        padding: 30px 20px;
    }
    
    .leader-name {
        font-size: clamp(0.95rem, 3.5vw + 0.4rem, 1.7rem);
        width: 100%;
        max-width: calc(100%);
    }
    
    .leader-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .intro-text-main {
        font-size: 1.2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .hero-values {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .hero-value {
        flex: 0 1 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card-header {
        padding: 30px 25px 18px;
    }
    
    .value-card-body {
        padding: 18px 25px 30px;
    }
    
    .aaa-rating-banner {
        padding: 30px 25px;
    }
    
    .aaa-large {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }
    
    .rating-text h3 {
        font-size: 1.6rem;
    }
    
    .rating-text p {
        font-size: 0.95rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-brand-description {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-link-group h4 {
        text-align: center;
    }
    
    .footer-link-group ul {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .form-success-backdrop {
        backdrop-filter: blur(2px);
    }
    
    .form-success {
        padding: 40px 30px;
        width: calc(100% - 40px);
        max-width: 450px;
        margin: 20px;
        max-height: 85vh;
    }
    
    .success-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .form-success svg {
        width: 50px;
        height: 50px;
    }
    
    .form-success h3 {
        font-size: 1.5rem;
    }
    
    .form-success p {
        font-size: 0.95rem;
    }
    
    .toast-container {
        top: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
        width: auto;
    }
    
    .toast {
        padding: 16px 18px;
        border-radius: 10px;
    }
    
    .toast-title {
        font-size: 0.95rem;
    }
    
    .toast-message {
        font-size: 0.85rem;
    }
    
    /* New Sections Responsive */
    .partnerships-highlight {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .partnerships-highlight h3 {
        text-align: center;
        font-size: 1.3rem;
    }
    
    .sector-item {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .sector-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .sector-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .partnerships-highlight {
        padding: 35px 25px;
        margin: 50px 0;
    }
    
    .partnerships-highlight p {
        font-size: 1rem;
    }
    
    .deliver-list li {
        padding: 25px 20px;
        font-size: 0.95rem;
    }
    
    .sectors-conclusion {
        padding: 30px 25px;
    }
    
    .sectors-conclusion p {
        font-size: 1rem;
    }
    
    .deliver-list li {
        font-size: 1rem;
        padding: 15px 0 15px 40px;
    }
    
    .deliver-closing {
        padding: 30px 25px;
    }
    
    .deliver-closing p {
        font-size: 1.1rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .leadership-closing {
        padding: 30px 25px;
    }
    
    .leadership-closing p {
        font-size: 1.1rem;
    }
    
    /* Ethical Highlight Mobile */
    .ethical-highlight {
        margin: 60px auto 0;
    }
    
    .ethical-highlight-text h3 {
        font-size: 1.2rem;
        padding-bottom: 20px;
    }
    
    .ethical-highlight-text p {
        font-size: 1rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 50px 0 !important;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .title-main {
        font-size: 2.2rem;
        letter-spacing: 2px;
        padding-bottom: 10px;
    }
    
    .title-main::after {
        width: 120px;
    }
    
    .title-subtitle {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 20px 0;
        overflow: visible;
    }
    
    .hero-content {
        padding: 80px 20px 80px;
    }
    
    .hero-values {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .hero-value {
        font-size: 0.9rem;
    }
    
    .value-icon {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 20px 25px;
        margin-bottom: 35px;
        line-height: 1.6;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 16px 40px;
        font-size: 1rem;
        max-width: 320px;
        margin-bottom: 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-main-title {
        font-size: 1.4rem;
    }
    
    .intro-text-main {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .intro-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .a-card, .principle-card, .leader-card {
        padding: 25px 15px;
    }
    
    .card-title, .leader-name {
        font-size: clamp(0.9rem, 4.5vw + 0.3rem, 1.6rem);
        margin-bottom: 15px;
        width: 100%;
        max-width: calc(100%);
    }
    
    .card-description, .leader-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .leader-initial {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .focus-title {
        font-size: 1.3rem;
    }
    
    .a-card,
    .focus-card {
        padding: 30px 20px;
    }
    
    .values-section {
        padding: 50px 30px;
    }
    
    .value-card-header {
        padding: 25px 20px 15px;
    }
    
    .value-card-body {
        padding: 15px 20px 25px;
    }
    
    .value-card-title {
        font-size: 1.5rem;
    }
    
    .value-card-subtitle {
        font-size: 0.9rem;
    }
    
    .value-icon-large {
        width: 60px;
        height: 60px;
        padding: 12px;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
    
    .value-features strong {
        font-size: 0.9rem;
    }
    
    .value-features p {
        font-size: 0.8rem;
    }
    
    /* Value Timeline Small Mobile */
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .value-highlight {
        padding: 25px 20px;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        padding: 15px;
    }
    
    .highlight-text h3 {
        font-size: 1.3rem;
    }
    
    .highlight-text p {
        font-size: 0.9rem;
    }
    
    .aaa-rating-banner {
        padding: 25px 20px;
    }
    
    .aaa-large {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .rating-text h3 {
        font-size: 1.3rem;
    }
    
    .rating-text p {
        font-size: 0.9rem;
    }
    
    /* New Sections Small Mobile */
    .partnerships-highlight {
        padding: 25px 20px;
    }
    
    .partnerships-highlight h3 {
        font-size: 1.1rem;
    }
    
    .sector-number {
        font-size: 1rem;
    }
    
    .sector-title {
        font-size: 1.3rem;
    }
    
    .sector-description {
        font-size: 0.95rem;
    }
    
    .sectors-conclusion {
        padding: 25px 20px;
    }
    
    .sectors-conclusion p {
        font-size: 0.95rem;
    }
    
    .deliver-list li {
        font-size: 0.95rem;
        padding: 12px 0 12px 35px;
    }
    
    .deliver-list li::before {
        left: 15px;
    }
    
    .deliver-closing {
        padding: 25px 20px;
    }
    
    .deliver-closing p {
        font-size: 1rem;
    }
    
    .leader-card {
        padding: 0px 0px;
    }
    
    .leader-initial {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .leader-name {
        font-size: clamp(0.85rem, 5.5vw + 0.3rem, 1.5rem);
        width: 100%;
        max-width: calc(100%);
    }
    
    .leader-description {
        font-size: 0.95rem;
    }
    
    .form-success-backdrop {
        backdrop-filter: blur(2px);
    }
    
    .form-success {
        padding: 35px 25px;
        width: calc(100% - 30px);
        max-width: 400px;
        margin: 15px;
        max-height: 80vh;
    }
    
    .success-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .form-success svg {
        width: 45px;
        height: 45px;
    }
    
    .form-success h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .form-success p {
        font-size: 0.9rem;
    }
    
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        gap: 12px;
    }
    
    .toast {
        padding: 14px 16px;
        border-radius: 10px;
    }
    
    .toast-icon {
        width: 20px;
        height: 20px;
    }
    
    .toast-title {
        font-size: 0.9rem;
    }
    
    .toast-message {
        font-size: 0.8rem;
    }
    
    /* Contact Form Small Mobile */
    .contact-form input,
    .contact-form textarea {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 16px 35px;
        font-size: 1rem;
        width: 100%;
    }
    
    .detail-item {
        padding: 20px;
    }
    
    .detail-item h4 {
        font-size: 1rem;
    }
    
    .detail-item p {
        font-size: 0.95rem;
    }
    
    .leadership-closing {
        padding: 25px 20px;
    }
    
    .leadership-closing p {
        font-size: 1rem;
    }
    
    /* Ethical Highlight Small Mobile */
    .ethical-highlight {
        margin: 50px auto 0;
    }
    
    .ethical-highlight-text h3 {
        font-size: 1.1rem;
        padding-bottom: 18px;
    }
    
    .ethical-highlight-text h3::after {
        width: 60px;
    }
    
    .ethical-highlight-text p {
        font-size: 0.95rem;
    }
}

/* ==========================================
   Card Animations
   ========================================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(212, 175, 55, 0.6), 
            0 25px 50px rgba(212, 175, 55, 0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.3),
            inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(212, 175, 55, 0.8), 
            0 30px 60px rgba(212, 175, 55, 0.6),
            inset 0 2px 6px rgba(255, 255, 255, 0.4);
    }
}

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

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

/* Unique animations for different card types */
.focus-card:nth-child(odd) {
    animation: slideInLeft 0.6s ease-out;
}

.focus-card:nth-child(even) {
    animation: slideInRight 0.6s ease-out;
}

.value-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.value-card:nth-child(2) {
    animation: scaleIn 0.6s ease-out 0.2s both;
}

.value-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.value-card:nth-child(4) {
    animation: scaleIn 0.6s ease-out 0.4s both;
}

.a-card:nth-child(1) {
    animation: slideInLeft 0.6s ease-out 0.1s both;
}

.a-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.a-card:nth-child(3) {
    animation: slideInRight 0.6s ease-out 0.3s both;
}

/* ==========================================
   Partnerships Section
   ========================================== */
.partnerships-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    padding: 100px 0;
}

.partnerships-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.partnerships-highlight {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px 50px;
    background: var(--gradient-green);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(26, 77, 62, 0.25);
}

.partnerships-highlight-icon {
    width: 70px;
    height: 70px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partnerships-highlight-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-gold);
}

.partnerships-highlight h3 {
    font-family: var(--font-engraving);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    color: var(--accent-gold-light);
    margin: 0;
    text-align: left;
}

/* ==========================================
   Sectors Section
   ========================================== */
.sectors {
    background: var(--gradient-green);
    padding: 100px 0;
    color: var(--white);
}

.sectors .section-title {
    color: var(--accent-gold);
}

.sectors .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.sectors .section-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.sectors-list {
    margin: 60px 0;
}

.sector-item {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.sector-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sector-number {
    font-family: var(--font-engraving);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.4),
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.2);
}

.sector-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold-light);
    margin-bottom: 20px;
    line-height: 1.3;
}

.sector-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.sectors-conclusion {
    margin-top: 60px;
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.sectors-conclusion p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--accent-gold-light);
    font-style: italic;
    margin: 0;
}

/* ==========================================
   What We Deliver Section
   ========================================== */
.deliver-section {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    padding: 100px 0;
}

.deliver-content {
    max-width: 900px;
    margin: 0 auto;
}

.deliver-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 30px;
}

.deliver-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
}

.deliver-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    padding: 20px 0 20px 50px;
    position: relative;
    border-left: 3px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
}

.deliver-list li::before {
    content: '◆';
    position: absolute;
    left: 20px;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.deliver-closing {
    text-align: center;
    padding: 40px 50px;
    background: var(--gradient-green);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(26, 77, 62, 0.25);
}

.deliver-closing p {
    font-family: var(--font-engraving);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 600;
    color: var(--accent-gold-light);
    margin: 0;
}

/* ==========================================
   Leadership Section
   ========================================== */
.leadership-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    padding: 100px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
}

@media (max-width: 1200px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .leader-name {
        font-size: clamp(1rem, 2.5vw + 0.5rem, 1.8rem);
        max-width: calc(100%);
        transition: font-size 0.2s ease;
    }
}

@media (max-width: 900px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 40px auto;
    }
    
    .leader-name {
        font-size: clamp(0.95rem, 3vw + 0.4rem, 1.7rem);
        max-width: calc(100%);
        transition: font-size 0.2s ease;
    }
}

@media (max-width: 600px) {
    .leadership-grid {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .leader-card {
        padding: 30px 20px;
    }
    
    .leader-name {
        font-size: clamp(0.9rem, 4vw + 0.3rem, 1.6rem);
        max-width: calc(100%);
        transition: font-size 0.2s ease;
    }
}

.leader-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.leader-initial {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--primary-green-dark);
    font-family: var(--font-engraving);
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.leader-name {
    font-family: var(--font-engraving);
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    width: 100%;
    max-width: calc(100%);
    margin-left: auto;
    margin-right: auto;
    word-break: keep-all;
    box-sizing: border-box;
    overflow: hidden;
}

.leader-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    text-align: left;
}

.leadership-closing {
    margin-top: 60px;
    text-align: center;
    padding: 40px 60px;
    background: var(--gradient-green);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(26, 77, 62, 0.25);
}

.leadership-closing p {
    font-family: var(--font-engraving);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 600;
    color: var(--accent-gold-light);
    margin: 0;
}

/* ==========================================
   Extra Small Devices (max-width: 360px)
   ========================================== */
@media (max-width: 360px) {
    .form-success-backdrop {
        backdrop-filter: blur(1px);
    }
    
    .form-success {
        padding: 30px 20px;
        width: calc(100% - 20px);
        max-width: 350px;
        margin: 10px;
        max-height: 75vh;
        border-radius: 15px;
    }
    
    .success-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .form-success svg {
        width: 40px;
        height: 40px;
    }
    
    .form-success h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .form-success p {
        font-size: 0.85rem;
    }
    
    .toast-container {
        top: 8px;
        right: 8px;
        left: 8px;
        gap: 10px;
    }
    
    .toast {
        padding: 12px 14px;
        border-radius: 8px;
    }
    
    .toast-icon {
        width: 18px;
        height: 18px;
    }
    
    .toast-title {
        font-size: 0.85rem;
    }
    
    .toast-message {
        font-size: 0.75rem;
    }
    
    .toast-close {
        width: 18px;
        height: 18px;
    }
    
    .toast-close svg {
        width: 14px;
        height: 14px;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center {
    text-align: center;
}

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

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

.bg-green {
    background: var(--gradient-green);
}

.bg-gold {
    background: var(--gradient-gold);
}

@media(max-width: 400px) {
    .leadership-grid {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
}


@media(max-width: 365px) {
    .leader-name {
        font-size: 1.1rem;
    }
}
