/* Lockheed Martin Velvet Style - Auto-themed */
:root {
    --or-navy: #0C200E;
    --or-navy-dark: #0C200E;
    --or-purple: #5e467b;
    --or-purple-light: #735595;
    --or-gold: #80cd0d;
    --or-gold-light: #9562f5;
    --or-gold-dark: #5e36cc;
    --or-cream: #faf8f5;
    --or-cream-dark: #eeefdb;
    --or-text: #E8EDF2;
    --or-text-muted: #8794ab;
    --or-border: #d9bee7;
    --or-shadow: 0 2px 4px rgba(0,0,0,0.12);
    --or-shadow-deep: rgba(30,30,74,0.22);
    --or-success: #248d53;
    --or-error: #ca5053;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', 'Segoe UI', Tahoma, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--or-text);
    background: var(--or-cream);
    min-height: 100vh;
}

.or-wrapper {
    max-width:100%;
    margin: 0 auto;
    padding: 0 28px;
}

/* Progress Bar */
.or-progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--or-purple), var(--or-gold));
    z-index: 9999;
    transition: width 0.15s ease-out;
}

/* Metal Prices Bar */
.or-metals-bar {
    background: linear-gradient(135deg, var(--or-navy-dark) 0%, var(--or-navy) 100%);
    padding: 20px 0;
    border-bottom: 2px solid var(--or-purple);
}

.or-metals-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 51px;
    flex-wrap: wrap;
}

.or-metal-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 8px 19px;
    border-radius: 6px;
    transition: background 0.3s;
}

.or-metal-item:hover {
    background: rgba(125,84,245,0.1);
}

.or-metal-name {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

.or-metal-price {
    font-size: 19px;
    font-weight: 700;
    color: var(--or-gold);
}

.or-metal-change {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.or-metal-change--positive { color: var(--or-success); }
.or-metal-change--negative { color: var(--or-error); }

.or-metals-status {
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.or-live-dot {
    width: 10px;
    height: 9px;
    background: var(--or-success);
    border-radius: 50%;
    animation: or-blink 1.8s infinite;
}

@keyframes or-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Header */
.or-header {
    background: rgba(250, 248, 245, 0.97);
    backdrop-filter: blur(9px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--or-border);
    box-shadow: 0 2px 20px var(--or-shadow);
}

.or-header-inner {
    max-width:100%;
    margin: 0 auto;
    padding: 17px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.or-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.or-brand-symbol {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--or-purple) 0%, var(--or-navy) 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--or-gold);
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(97,54,115,0.35);
}

.or-brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--or-navy);
    letter-spacing: -0.6px;
}

.or-navigation {
    display: flex;
    gap: 38px;
}

.or-nav-item {
    color: var(--or-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 11px 0;
    position: relative;
    transition: color 0.3s;
}

.or-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--or-purple), var(--or-gold));
    transition: width 0.3s;
}

.or-nav-item:hover,
.or-nav-item--current {
    color: var(--or-purple);
}

.or-nav-item:hover::after,
.or-nav-item--current::after {
    width: 100%;
}

.or-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 9px;
}

.or-burger-line {
    width: 26px;
    height: 2px;
    background: var(--or-navy);
    transition: all 0.3s;
}

.or-burger.active .or-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.or-burger.active .or-burger-line:nth-child(2) {
    opacity: 0;
}

.or-burger.active .or-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.or-mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--or-cream);
    border-top: 1px solid var(--or-border);
    padding: 21px 28px;
}

.or-mobile-menu.active {
    display: flex;
}

.or-mobile-item {
    padding: 17px 0;
    color: var(--or-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--or-border);
}

.or-mobile-item:last-child {
    border-bottom: none;
}

/* Hero Section */
.or-hero {
    background: linear-gradient(145deg, var(--or-navy-dark) 0%, var(--or-navy) 40%, var(--or-purple) 100%);
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.or-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(118,84,245,0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(87,58,120,0.15) 0%, transparent 50%);
}

.or-hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 26px;
}

.or-hero-label {
    display: inline-block;
    padding: 11px 24px;
    background: rgba(116,71,245,0.15);
    border: 1px solid rgba(117,77,245,0.4);
    border-radius: 32px;
    color: var(--or-gold);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 27px;
}

.or-hero-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 4px 33px rgba(0,0,0,0.3);
}

.or-hero-desc {
    font-size: 19px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 33px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.or-hero-buttons {
    display: flex;
    gap: 17px;
    justify-content: center;
    flex-wrap: wrap;
}

.or-button {
    display: inline-flex;
    align-items: center;
    padding: 14px 35px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 11px;
    transition: all 0.35s;
    border: none;
    cursor: pointer;
}

.or-button--primary {
    background: linear-gradient(135deg, var(--or-gold) 0%, var(--or-gold-light) 100%);
    color: var(--or-navy-dark);
    box-shadow: 0 6px 24px rgba(120,74,245,0.4);
}

.or-button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(121,72,245,0.5);
}

.or-button--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
}

.or-button--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

/* Rating Badge */
.or-rating-section {
    background: var(--or-cream-dark);
    padding: 32px 0;
    border-bottom: 2px solid var(--or-border);
}

.or-rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: #fff;
    padding: 15px 39px;
    border-radius: 49px;
    box-shadow: 0 3px 21px var(--or-shadow);
    max-width: fit-content;
    margin: 0 auto;
}

.or-rating-label {
    font-size: 13px;
    color: var(--or-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.or-stars {
    display: flex;
    gap: 4px;
}

.or-star {
    color: #d5e3d9;
    font-size: 17px;
}

.or-star--active {
    color: var(--or-gold);
}

.or-rating-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--or-navy);
}

.or-rating-count {
    font-size: 14px;
    color: var(--or-text-muted);
}

/* Main Content */
.or-main {
    padding: 68px 0;
}

.or-content {
    max-width: 780px;
    margin: 0 auto;
}

.or-opening {
    padding: 32px;
    background: linear-gradient(135deg, rgba(93,63,125,0.06) 0%, rgba(130,72,245,0.04) 100%);
    border-radius: 17px;
    border-left: 6px solid var(--or-purple);
    margin-bottom: 47px;
}

.or-opening-text {
    font-size: 23px;
    line-height: 1.8;
    color: var(--or-text);
}

.or-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--or-navy);
    margin: 53px 0 29px;
    line-height: 1.25;
    position: relative;
    padding-bottom: 18px;
}

.or-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--or-purple), var(--or-gold));
    border-radius: 1px;
}

.or-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--or-navy);
    margin: 37px 0 16px;
}

.or-content p {
    margin-bottom: 23px;
    line-height: 1.85;
}

.or-list {
    margin: 28px 0;
    padding-left: 31px;
}

.or-list li {
    margin-bottom: 16px;
    line-height: 1.75;
    position: relative;
    padding-left: 7px;
}

.or-list li::marker {
    color: var(--or-purple);
}

.or-numbered-list {
    margin: 31px 0;
    padding-left: 27px;
    counter-reset: or-counter;
}

.or-numbered-list li {
    margin-bottom: 14px;
    line-height: 1.75;
}

/* Image Block */
.or-image-block {
    margin: 51px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 47px var(--or-shadow-deep);
    border: 3px solid rgba(99,62,123,0.15);
}

.or-image-block img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.or-image-block:hover img {
    transform: scale(1.03);
}

/* Video Section */
.or-video-section {
    margin: 63px 0;
    padding: 44px;
    background: linear-gradient(135deg, var(--or-navy) 0%, var(--or-purple) 100%);
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.or-video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(128,76,245,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.or-video-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
}

.or-video-desc {
    color: rgba(255,255,255,0.75);
    margin-bottom: 25px;
    position: relative;
}

.or-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 7px 33px rgba(0,0,0,0.35);
}

.or-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.or-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--or-navy-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.or-play-icon {
    width: 80px;
    height: 100px;
    background: var(--or-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.or-play-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(116,78,245,0.5);
}

.or-play-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--or-navy-dark);
    margin-left: 3px;
}

/* Checklist Component */
.or-checklist-section {
    margin: 56px 0;
    padding: 40px;
    background: #fff;
    border-radius: 19px;
    box-shadow: 0 10px 32px var(--or-shadow);
    border: 1px solid var(--or-border);
}

.or-checklist-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 26px;
}

.or-checklist-icon {
    width: 53px;
    height: 52px;
    background: linear-gradient(135deg, var(--or-purple) 0%, var(--or-purple-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.or-checklist-icon svg {
    width: 26px;
    height: 26px;
}

.or-checklist-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--or-navy);
    margin: 0;
}

.or-checklist-items {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.or-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 17px 18px;
    background: var(--or-cream);
    border-radius: 13px;
    transition: all 0.3s;
}

.or-check-item:hover {
    background: rgba(85,60,126,0.08);
    transform: translateX(6px);
}

.or-check-mark {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--or-success) 0%, #30a76f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.or-check-mark svg {
    width: 12px;
    height: 14px;
    stroke: #fff;
    stroke-width: 3;
}

.or-check-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--or-text);
}

.or-check-text strong {
    color: var(--or-navy);
}

/* Testimonial Slider */
.or-testimonials {
    margin: 68px 0;
    padding: 57px 0;
    background: linear-gradient(180deg, var(--or-cream-dark) 0%, var(--or-cream) 100%);
    border-top: 1px solid var(--or-border);
    border-bottom: 1px solid var(--or-border);
}

.or-testimonials-header {
    text-align: center;
    margin-bottom: 44px;
}

.or-testimonials-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--or-navy);
    margin-bottom: 11px;
}

.or-testimonials-subtitle {
    color: var(--or-text-muted);
    font-size: 17px;
}

.or-testimonials-track {
    display: flex;
    gap: 31px;
    overflow-x: auto;
    padding: 12px 25px 23px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.or-testimonials-track::-webkit-scrollbar {
    height: 6px;
}

.or-testimonials-track::-webkit-scrollbar-track {
    background: var(--or-border);
    border-radius: 2px;
}

.or-testimonials-track::-webkit-scrollbar-thumb {
    background: var(--or-purple);
    border-radius: 4px;
}

.or-testimonial-card {
    flex: 0 0 340px;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 33px var(--or-shadow);
    scroll-snap-align: start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.or-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px var(--or-shadow-deep);
}

.or-testimonial-quote {
    font-size: 15px;
    line-height: 1.75;
    color: var(--or-text);
    margin-bottom: 27px;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.or-testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 48px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--or-gold);
    opacity: 0.5;
    line-height: 1;
}

.or-testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.or-author-avatar {
    width: 46px;
    height: 48px;
    background: linear-gradient(135deg, var(--or-purple) 0%, var(--or-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.or-author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--or-navy);
    margin: 0 0 4px;
}

.or-author-info span {
    font-size: 10px;
    color: var(--or-text-muted);
}

/* Comparison Table */
.or-comparison {
    margin: 58px 0;
    overflow-x: auto;
}

.or-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 6px 36px var(--or-shadow);
}

.or-table thead {
    background: linear-gradient(135deg, var(--or-navy) 0%, var(--or-purple) 100%);
    color: #fff;
}

.or-table th {
    padding: 20px 25px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.or-table td {
    padding: 21px 21px;
    border-bottom: 1px solid var(--or-border);
    font-size: 15px;
}

.or-table tbody tr:last-child td {
    border-bottom: none;
}

.or-table tbody tr:hover {
    background: rgba(90,66,118,0.04);
}

.or-badge {
    display: inline-block;
    padding: 5px 17px;
    border-radius: 22px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.or-badge--yes {
    background: rgba(44,137,94,0.12);
    color: var(--or-success);
}

.or-badge--no {
    background: rgba(197,66,71,0.12);
    color: var(--or-error);
}

/* Features Grid */
.or-features {
    margin: 68px 0;
    padding: 59px 38px;
    background: #fff;
    border-radius: 21px;
    box-shadow: 0 10px 48px var(--or-shadow);
}

.or-features-header {
    text-align: center;
    margin-bottom: 52px;
}

.or-features-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--or-navy);
    margin-bottom: 15px;
}

.or-features-desc {
    color: var(--or-text-muted);
    font-size: 17px;
}

.or-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 29px;
}

.or-feature-box {
    padding: 35px 31px;
    background: var(--or-cream);
    border-radius: 16px;
    transition: all 0.35s;
    border: 1px solid transparent;
}

.or-feature-box:hover {
    border-color: rgba(89,67,116,0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--or-shadow);
}

.or-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--or-purple) 0%, var(--or-gold) 100%);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.or-feature-icon svg {
    width: 25px;
    height: 28px;
    stroke: #fff;
}

.or-feature-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--or-navy);
    margin-bottom: 10px;
}

.or-feature-text {
    font-size: 16px;
    color: var(--or-text-muted);
    line-height: 1.65;
}

/* FAQ Section */
.or-faq {
    margin: 70px 0;
}

.or-faq-header {
    text-align: center;
    margin-bottom: 53px;
}

.or-faq-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--or-navy);
    margin-bottom: 9px;
}

.or-faq-subtitle {
    color: var(--or-text-muted);
    font-size: 17px;
}

.or-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.or-faq-item {
    background: #fff;
    border: 1px solid var(--or-border);
    border-radius: 13px;
    overflow: hidden;
    transition: all 0.35s;
}

.or-faq-item:hover {
    border-color: rgba(94,57,124,0.35);
    box-shadow: 0 6px 25px var(--or-shadow);
}

.or-faq-item.active {
    border-color: var(--or-purple);
    box-shadow: 0 10px 35px var(--or-shadow);
}

.or-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 21px;
    padding: 21px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.or-faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--or-navy);
    line-height: 1.45;
}

.or-faq-toggle {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(95,66,117,0.1) 0%, rgba(124,80,245,0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--or-purple);
    transition: all 0.35s;
}

.or-faq-item.active .or-faq-toggle {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--or-purple) 0%, var(--or-gold) 100%);
    color: #fff;
}

.or-faq-toggle svg {
    width: 18px;
    height: 18px;
}

.or-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.or-faq-item.active .or-faq-answer {
    max-height: 800px;
}

.or-faq-content {
    padding: 0 25px 22px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--or-text);
}

/* Footer */
.or-footer {
    background: linear-gradient(145deg, var(--or-navy-dark) 0%, var(--or-navy) 100%);
    color: rgba(255,255,255,0.8);
    padding: 75px 0 43px;
    margin-top: 82px;
}

.or-footer::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--or-purple), var(--or-gold), var(--or-purple));
    margin-bottom: 78px;
}

.or-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 49px;
    margin-bottom: 48px;
}

.or-footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.or-footer-tagline {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255,255,255,0.6);
    max-width: 320px;
}

.or-footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 23px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.or-footer-links {
    list-style: none;
}

.or-footer-links li {
    margin-bottom: 10px;
}

.or-footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.or-footer-links a:hover {
    color: var(--or-gold);
}

.or-footer-bottom {
    padding-top: 35px;
    border-top: 2px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
}

/* Contact Page Styles */
.or-contact-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 52px;
    margin-top: 48px;
}

.or-contact-details {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.or-contact-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.or-contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--or-purple) 0%, var(--or-gold) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.or-contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.or-contact-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--or-navy);
    margin-bottom: 5px;
}

.or-contact-info p {
    color: var(--or-text-muted);
    margin: 0;
    font-size: 13px;
}

.or-form-wrapper {
    background: #fff;
    padding: 41px;
    border-radius: 16px;
    box-shadow: 0 13px 42px var(--or-shadow);
}

.or-form-field {
    margin-bottom: 21px;
}

.or-form-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--or-navy);
    margin-bottom: 7px;
}

.or-form-input,
.or-form-textarea,
.or-form-select {
    width: 100%;
    padding: 12px 19px;
    border: 1px solid var(--or-border);
    border-radius: 11px;
    font-family: inherit;
    font-size: 18px;
    background: var(--or-cream);
    transition: all 0.3s;
}

.or-form-input:focus,
.or-form-textarea:focus,
.or-form-select:focus {
    outline: none;
    border-color: var(--or-purple);
    box-shadow: 0 0 0 4px rgba(86,54,128,0.1);
    background: #fff;
}

.or-form-textarea {
    min-height: 130px;
    resize: vertical;
}

.or-form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--or-purple) 0%, var(--or-gold) 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s;
}

.or-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(87,68,121,0.4);
}

.or-form-success {
    display: none;
    padding: 19px;
    background: rgba(37,131,93,0.1);
    border: 1px solid rgba(38,128,85,0.3);
    border-radius: 9px;
    color: var(--or-success);
    text-align: center;
    margin-top: 20px;
}

.or-form-success.active {
    display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .or-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .or-contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .or-navigation {
        display: none;
    }

    .or-burger {
        display: flex;
    }

    .or-hero-heading {
        font-size: 36px;
    }

    .or-hero-desc {
        font-size: 17px;
    }

    .or-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .or-button {
        width: 100%;
        justify-content: center;
    }

    .or-content h2 {
        font-size: 28px;
    }

    .or-metals-grid {
        gap: 23px;
    }

    .or-metal-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .or-features-grid {
        grid-template-columns: 1fr;
    }

    .or-footer-grid {
        grid-template-columns: 1fr;
        gap: 33px;
    }

    .or-testimonial-card {
        flex: 0 0 290px;
    }

    .or-table {
        font-size: 13px;
    }

    .or-table th,
    .or-table td {
        padding: 17px;
    }

    .or-video-section {
        padding: 32px 17px;
    }

    .or-checklist-section {
        padding: 31px 21px;
    }

    .or-form-wrapper {
        padding: 26px 23px;
    }
}

/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 240px;
    height: 165px;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 5px;
    margin-bottom: 11px;
    border: 1px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 11px 24px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-primary:hover {
    background: var(--fb-secondary-dark);
    color: var(--fb-dark);
    transform: translateY(-1px);
}

.fb-btn-review {
    display: inline-block;
    padding: 7px 27px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-review:hover {
    background: var(--fb-primary);
    color: var(--fb-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 10px 13px;
        font-size: 16px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .th-company-logo,
    .op-company-logo,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 10px !important;
        margin: 0 auto 9px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 15px 19px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 9px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .th-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}


/* Max width 1400px for desktop */
.or-wrapper, .or-content, .or-hero-inner, .or-companies-container, 
.or-article, .or-container, .or-footer-inner, .or-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.or-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.or-td-action {
    text-align: center !important;
}
.or-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 13px !important;
}
