/* Gucci Supreme Style - Auto-themed */
/* Unique class prefix: gs- (Gucci Supreme) */

:root {
    --oopm-deep-green: #0a2e27;
    --oopm-forest: #22442b;
    --oopm-emerald: #2a704e;
    --oopm-gold: #f57189;
    --oopm-gold-light: #f4a3b7;
    --oopm-gold-dark: #153349;
    --oopm-cream: #faf8f0;
    --oopm-ivory: #f5f2e8;
    --oopm-charcoal: #151f23;
    --oopm-slate: #3d3936;
    --oopm-text: #330a21;
    --oopm-text-muted: #464c6e;
    --oopm-red-accent: #ca2331;
    --oopm-border: #c6d8db;
    --oopm-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --oopm-shadow-md: 0 6px 24px rgba(0, 0, 0, 0.12);
    --oopm-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.18);
    --oopm-shadow-gold: 0 6px 24px rgba(34,69,94,0.25);
    --oopm-transition: cubic-bezier(0.4, 0, 0.2, 1);
    --oopm-font-display: 'Playfair Display', serif;
    --oopm-font-body: 'Inter', sans-serif;
}

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

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

body {
    font-family: var(--oopm-font-body);
    line-height: 1.75;
    color: var(--oopm-text);
    background: var(--oopm-cream);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(33,67,102,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 75%, rgba(15,54,26,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.oopm-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Luxury Header */
.oopm-masthead {
    background: linear-gradient(180deg, var(--oopm-deep-green) 0%, var(--oopm-forest) 100%);
    border-bottom: 3px solid var(--oopm-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--oopm-shadow-md);
}

.oopm-masthead-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 29px;
    padding-right: 26px;
}

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

.oopm-brand-emblem {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--oopm-gold) 0%, var(--oopm-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--oopm-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--oopm-deep-green);
    box-shadow: 0 4px 16px rgba(31,66,101,0.35);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.oopm-brand-name {
    font-family: var(--oopm-font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--oopm-cream);
    letter-spacing: 2px;
}

.oopm-brand-name span {
    color: var(--oopm-gold);
}

.oopm-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.oopm-nav-item {
    color: var(--oopm-cream);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 19px;
    border-radius: 7px;
    transition: all 0.35s var(--oopm-transition);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    position: relative;
}

.oopm-nav-item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--oopm-gold);
    transition: transform 0.35s var(--oopm-transition);
}

.oopm-nav-item:hover {
    color: var(--oopm-gold);
    background: rgba(255, 255, 255, 0.05);
}

.oopm-nav-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.oopm-nav-item--current {
    color: var(--oopm-gold);
    background: rgba(20,67,99,0.1);
}

.oopm-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 7px;
}

.oopm-hamburger-bar {
    width: 28px;
    height: 2px;
    background: var(--oopm-gold);
    border-radius: 3px;
    transition: all 0.3s var(--oopm-transition);
}

.oopm-hamburger.is-active .oopm-hamburger-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.oopm-hamburger.is-active .oopm-hamburger-bar:nth-child(2) {
    opacity: 0;
}

.oopm-hamburger.is-active .oopm-hamburger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.oopm-mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--oopm-forest);
    border-top: 1px solid rgba(19,73,107,0.2);
    padding: 18px 27px;
}

.oopm-mobile-menu.is-visible {
    display: flex;
}

.oopm-mobile-link {
    color: var(--oopm-cream);
    text-decoration: none;
    padding: 17px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    transition: color 0.3s;
}

.oopm-mobile-link:last-child {
    border-bottom: none;
}

.oopm-mobile-link:hover {
    color: var(--oopm-gold);
}

/* Hero Banner */
.oopm-hero-banner {
    background: linear-gradient(135deg, var(--oopm-deep-green) 0%, var(--oopm-forest) 40%, var(--oopm-emerald) 100%);
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.oopm-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="%23c9a227" stroke-width="0.3" opacity="0.1"/></svg>') repeat;
    background-size: 80px 80px;
    animation: gs-pattern-drift 25s linear infinite;
}

@keyframes gs-pattern-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.oopm-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(25,80,106,0.2), rgba(24,70,97,0.1));
    border: 1px solid var(--oopm-gold);
    color: var(--oopm-gold);
    padding: 11px 26px;
    border-radius: 53px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.oopm-hero-headline {
    font-family: var(--oopm-font-display);
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 27px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.oopm-hero-headline span {
    background: linear-gradient(135deg, var(--oopm-gold), var(--oopm-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oopm-hero-tagline {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.oopm-hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.oopm-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 39px;
    font-family: var(--oopm-font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--oopm-transition);
}

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

.oopm-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(30,74,104,0.4);
}

.oopm-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.oopm-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Stats Counter Section */
.oopm-metrics-band {
    background: var(--oopm-charcoal);
    padding: 53px 0;
    border-bottom: 3px solid var(--oopm-gold);
}

.oopm-metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
    text-align: center;
}

.oopm-metric-block {
    padding: 23px;
    position: relative;
}

.oopm-metric-block::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(34,68,102,0.3), transparent);
}

.oopm-metric-block:last-child::after {
    display: none;
}

.oopm-metric-figure {
    font-family: var(--oopm-font-display);
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--oopm-gold), var(--oopm-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.oopm-metric-caption {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-weight: 600;
}

/* Provider Cards */
.oopm-providers-showcase {
    padding: 90px 0;
    background: var(--oopm-ivory);
}

.oopm-section-intro {
    text-align: center;
    margin-bottom: 58px;
}

.oopm-section-label {
    display: inline-block;
    color: var(--oopm-gold-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 13px;
}

.oopm-section-heading {
    font-family: var(--oopm-font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--oopm-charcoal);
    margin-bottom: 15px;
    line-height: 1.2;
}

.oopm-section-desc {
    font-size: 17px;
    color: var(--oopm-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.oopm-provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 31px;
}

.oopm-provider-tile {
    background: #fff;
    border-radius: 12px;
    padding: 29px 30px;
    box-shadow: var(--oopm-shadow-sm);
    border: 1px solid var(--oopm-border);
    transition: all 0.4s var(--oopm-transition);
    position: relative;
    overflow: hidden;
}

.oopm-provider-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--oopm-deep-green), var(--oopm-gold));
    transform: scaleX(0);
    transition: transform 0.4s var(--oopm-transition);
}

.oopm-provider-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--oopm-shadow-lg);
    border-color: var(--oopm-gold);
}

.oopm-provider-tile:hover::before {
    transform: scaleX(1);
}

.oopm-provider-tile--featured {
    border: 2px solid var(--oopm-gold);
    box-shadow: var(--oopm-shadow-gold);
}

.oopm-provider-tile--featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--oopm-gold), var(--oopm-gold-light), var(--oopm-gold));
}

.oopm-provider-position {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: var(--oopm-deep-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--oopm-gold);
}

.oopm-provider-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    margin-bottom: 19px;
}

.oopm-provider-name {
    font-family: var(--oopm-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--oopm-charcoal);
    margin-bottom: 7px;
}

.oopm-provider-slogan {
    font-size: 13px;
    color: var(--oopm-emerald);
    font-weight: 600;
    margin-bottom: 13px;
}

.oopm-provider-stars {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.oopm-stars {
    color: var(--oopm-gold);
    font-size: 16px;
    letter-spacing: 3px;
}

.oopm-rating-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--oopm-charcoal);
}

.oopm-provider-details {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid var(--oopm-border);
    margin-bottom: 17px;
}

.oopm-provider-detail {
    font-size: 13px;
    color: var(--oopm-text-muted);
}

.oopm-provider-detail strong {
    display: block;
    color: var(--oopm-charcoal);
    font-weight: 700;
}

.oopm-provider-cta {
    display: flex;
    gap: 11px;
}

.oopm-provider-cta .oopm-btn {
    flex: 1;
    padding: 15px 19px;
    font-size: 10px;
    justify-content: center;
}

/* Content Section */
.oopm-content-area {
    padding: 83px 0;
    background: #fff;
}

.oopm-article-body {
    max-width: 820px;
    margin: 0 auto;
}

.oopm-article-body h2 {
    font-family: var(--oopm-font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--oopm-deep-green);
    margin: 58px 0 23px 0;
    line-height: 1.3;
    position: relative;
    padding-left: 27px;
}

.oopm-article-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: linear-gradient(180deg, var(--oopm-gold), var(--oopm-gold-dark));
    border-radius: 2px;
}

.oopm-article-body h3 {
    font-family: var(--oopm-font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--oopm-charcoal);
    margin: 42px 0 17px 0;
}

.oopm-article-body p {
    margin-bottom: 25px;
    color: var(--oopm-text);
    font-size: 17px;
    line-height: 1.85;
}

.oopm-article-body ul,
.oopm-article-body ol {
    margin: 22px 0;
    padding-left: 0;
    list-style: none;
}

.oopm-article-body li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 14px;
    line-height: 1.7;
}

.oopm-article-body ul li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--oopm-gold);
    border-radius: 3px;
    transform: rotate(45deg);
}

.oopm-article-body ol {
    counter-reset: gs-counter;
}

.oopm-article-body ol li::before {
    counter-increment: gs-counter;
    content: counter(gs-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--oopm-deep-green);
    color: var(--oopm-gold);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Styling */
.oopm-visual-block {
    margin: 45px 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--oopm-shadow-md);
    border: 2px solid var(--oopm-border);
    position: relative;
}

.oopm-visual-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--oopm-deep-green), var(--oopm-gold), var(--oopm-deep-green));
    z-index: 1;
}

.oopm-visual-block img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonial Slider */
.oopm-testimonials-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--oopm-deep-green) 0%, var(--oopm-forest) 100%);
    position: relative;
    overflow: hidden;
}

.oopm-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><rect x="25" y="25" width="10" height="10" fill="none" stroke="%23c9a227" stroke-width="0.3" opacity="0.1"/></svg>') repeat;
    background-size: 60px 60px;
}

.oopm-testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.oopm-testimonials-header .oopm-section-label {
    color: var(--oopm-gold);
}

.oopm-testimonials-header .oopm-section-heading {
    color: #fff;
}

.oopm-testimonials-header .oopm-section-desc {
    color: rgba(255, 255, 255, 0.75);
}

.oopm-testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.oopm-testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 11px;
    padding: 39px 33px;
    box-shadow: var(--oopm-shadow-md);
    position: relative;
}

.oopm-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: var(--oopm-font-display);
    font-size: 72px;
    color: var(--oopm-gold);
    opacity: 0.15;
    line-height: 1;
}

.oopm-testimonial-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--oopm-text);
    margin-bottom: 26px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

.oopm-author-avatar {
    width: 55px;
    height: 52px;
    background: linear-gradient(135deg, var(--oopm-deep-green), var(--oopm-emerald));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oopm-gold);
    font-family: var(--oopm-font-display);
    font-size: 20px;
    font-weight: 700;
}

.oopm-author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--oopm-charcoal);
    margin-bottom: 2px;
}

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

/* FAQ Accordion */
.oopm-faq-section {
    padding: 90px 0;
    background: var(--oopm-ivory);
}

.oopm-faq-header {
    text-align: center;
    margin-bottom: 49px;
}

.oopm-accordion {
    max-width: 820px;
    margin: 0 auto;
}

.oopm-accordion-item {
    background: #fff;
    border-radius: 11px;
    margin-bottom: 12px;
    box-shadow: var(--oopm-shadow-sm);
    border: 1px solid var(--oopm-border);
    overflow: hidden;
    transition: all 0.35s var(--oopm-transition);
}

.oopm-accordion-item:hover {
    border-color: var(--oopm-gold);
}

.oopm-accordion-item.is-open {
    border-color: var(--oopm-gold);
    box-shadow: var(--oopm-shadow-md);
}

.oopm-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.oopm-accordion-trigger:hover {
    background: rgba(10,56,41,0.02);
}

.oopm-accordion-question {
    font-family: var(--oopm-font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--oopm-charcoal);
    padding-right: 19px;
}

.oopm-accordion-icon {
    width: 35px;
    height: 32px;
    background: var(--oopm-deep-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oopm-gold);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.35s var(--oopm-transition);
}

.oopm-accordion-item.is-open .oopm-accordion-icon {
    background: var(--oopm-gold);
    color: var(--oopm-deep-green);
    transform: rotate(180deg);
}

.oopm-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--oopm-transition);
}

.oopm-accordion-item.is-open .oopm-accordion-panel {
    max-height: 600px;
}

.oopm-accordion-answer {
    padding: 0 28px 21px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--oopm-text);
}

/* Footer */
.oopm-footer {
    background: linear-gradient(135deg, var(--oopm-charcoal) 0%, #191114 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 79px 0 43px;
    position: relative;
}

.oopm-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--oopm-deep-green), var(--oopm-gold), var(--oopm-deep-green));
}

.oopm-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 53px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 37px;
}

.oopm-footer-brand-col .oopm-brand {
    margin-bottom: 18px;
}

.oopm-footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.oopm-footer-heading {
    font-family: var(--oopm-font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--oopm-gold);
    margin-bottom: 21px;
    letter-spacing: 0.4px;
}

.oopm-footer-nav {
    list-style: none;
}

.oopm-footer-nav li {
    margin-bottom: 15px;
}

.oopm-footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

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

.oopm-footer-disclaimer {
    background: rgba(0, 0, 0, 0.3);
    padding: 26px;
    border-radius: 7px;
    margin-bottom: 33px;
}

.oopm-footer-disclaimer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.oopm-footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Form Styles */
.oopm-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 63px;
    padding: 60px 0;
}

.oopm-contact-info-block {
    display: flex;
    gap: 17px;
    margin-bottom: 34px;
}

.oopm-contact-icon {
    width: 53px;
    height: 54px;
    background: linear-gradient(135deg, var(--oopm-deep-green), var(--oopm-forest));
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oopm-gold);
    flex-shrink: 0;
}

.oopm-contact-icon svg {
    width: 24px;
    height: 24px;
}

.oopm-contact-details h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--oopm-charcoal);
    margin-bottom: 3px;
}

.oopm-contact-details p {
    font-size: 14px;
    color: var(--oopm-text-muted);
    margin: 0;
}

.oopm-form-container {
    background: var(--oopm-ivory);
    padding: 39px;
    border-radius: 19px;
    box-shadow: var(--oopm-shadow-sm);
}

.oopm-form-field {
    margin-bottom: 25px;
}

.oopm-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--oopm-charcoal);
    margin-bottom: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.oopm-form-input,
.oopm-form-textarea,
.oopm-form-select {
    width: 100%;
    padding: 11px 20px;
    font-family: var(--oopm-font-body);
    font-size: 15px;
    border: 2px solid var(--oopm-border);
    border-radius: 9px;
    background: #fff;
    transition: all 0.3s;
    box-sizing: border-box;
}

.oopm-form-input:focus,
.oopm-form-textarea:focus,
.oopm-form-select:focus {
    outline: none;
    border-color: var(--oopm-gold);
    box-shadow: 0 0 0 4px rgba(30,69,96,0.1);
}

.oopm-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.oopm-form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--oopm-deep-green), var(--oopm-forest));
    color: var(--oopm-gold);
    font-family: var(--oopm-font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.4s var(--oopm-transition);
}

.oopm-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--oopm-shadow-md);
}

.oopm-form-success {
    display: none;
    padding: 25px;
    background: rgba(12,59,36,0.1);
    border: 1px solid var(--oopm-emerald);
    border-radius: 11px;
    color: var(--oopm-deep-green);
    text-align: center;
}

.oopm-form-success.is-visible {
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .oopm-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .oopm-contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .oopm-header { position: relative !important; }
    .oopm-navigation {
        display: none;
    }

    .oopm-hamburger {
        display: flex;
    }

    .oopm-hero-headline {
        font-size: 36px;
    }

    .oopm-hero-tagline {
        font-size: 16px;
    }

    .oopm-hero-actions {
        flex-direction: column;
    }

    .oopm-btn {
        width: 100%;
        justify-content: center;
    }

    .oopm-metrics-row {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .oopm-metric-block::after {
        display: none;
    }

    .oopm-section-heading {
        font-size: 32px;
    }

    .oopm-article-body h2 {
        font-size: 28px;
    }

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

    .oopm-form-container {
        padding: 28px 17px;
    }

    .oopm-testimonials-carousel {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Companies Comparison Table - Supreme Opulent Style
   ======================================== */
.oopm-comparison-section {
    padding: 94px 0;
    background: var(--oopm-cream);
}

.oopm-comparison-header {
    text-align: center;
    margin-bottom: 57px;
}

.oopm-comparison-crest {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 13px 24px;
    background: var(--oopm-green-dark);
    color: var(--oopm-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.oopm-comparison-title {
    font-size: 46px;
    font-weight: 300;
    color: var(--oopm-green-dark);
    font-family: var(--oopm-font-display);
    letter-spacing: 1px;
    margin-bottom: 19px;
}

.oopm-comparison-subtitle {
    font-size: 17px;
    color: var(--oopm-gray-600);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
}

.oopm-comparison-table {
    width: 100%;
    background: var(--oopm-white);
    border: 2px solid var(--oopm-green-dark);
}

.oopm-comparison-table thead {
    background: var(--oopm-green-dark);
}

.oopm-comparison-table th {
    padding: 26px;
    text-align: left;
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    color: var(--oopm-gold);
}

.oopm-comparison-table td {
    padding: 27px 29px;
    border-bottom: 2px solid var(--oopm-cream);
    font-size: 14px;
    color: var(--oopm-gray-700);
}

.oopm-comparison-table tbody tr:hover {
    background: var(--oopm-cream);
}

.oopm-company-cell {
    display: flex;
    align-items: center;
    gap: 23px;
}

.oopm-company-monogram {
    width: 58px;
    height: 58px;
    background: var(--oopm-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.oopm-company-monogram::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid var(--oopm-gold);
}

.oopm-company-monogram img {
    max-width: 36px;
    max-height: 36px;
    filter: brightness(0) invert(1);
}

.oopm-company-house h4 {
    font-size: 17px;
    font-weight: 500;
    color: var(--oopm-green-dark);
    font-family: var(--oopm-font-display);
    letter-spacing: 0.6px;
}

.oopm-company-house span {
    font-size: 12px;
    color: var(--oopm-gray-500);
}

.oopm-rating-supreme {
    font-size: 24px;
    font-weight: 600;
    color: var(--oopm-gold);
    font-family: var(--oopm-font-display);
}

.oopm-feature-supreme {
    display: inline-block;
    padding: 11px 17px;
    background: var(--oopm-green-dark);
    color: var(--oopm-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.oopm-btn-supreme {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 19px 32px;
    background: var(--oopm-gold);
    color: var(--oopm-green-dark);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.oopm-btn-supreme:hover {
    background: var(--oopm-green-dark);
    color: var(--oopm-gold);
}

.oopm-comparison-cards { display: none; }

.oopm-company-card {
    background: var(--oopm-white);
    border: 2px solid var(--oopm-green-dark);
    padding: 35px;
    margin-bottom: 23px;
}

.oopm-card-house {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 31px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--oopm-cream);
}

.oopm-card-monogram {
    width: 72px;
    height: 72px;
    background: var(--oopm-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.oopm-card-monogram::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid var(--oopm-gold);
}

.oopm-card-brand h4 {
    font-size: 24px;
    font-weight: 500;
    color: var(--oopm-green-dark);
    font-family: var(--oopm-font-display);
}

.oopm-card-luxe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
    margin-bottom: 28px;
}

.oopm-card-luxe-item {
    padding: 17px;
    background: var(--oopm-cream);
}

.oopm-card-luxe-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--oopm-gray-500);
    margin-bottom: 10px;
}

.oopm-card-luxe-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--oopm-green-dark);
}

.oopm-card-cta-supreme {
    display: block;
    text-align: center;
    padding: 16px;
    background: var(--oopm-gold);
    color: var(--oopm-green-dark);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.oopm-card-cta-supreme:hover {
    background: var(--oopm-green-dark);
    color: var(--oopm-gold);
}

@media (max-width: 900px) {
    .oopm-comparison-table { display: none; }
    .oopm-comparison-cards { display: block; }
    .oopm-comparison-title { font-size: 36px; }
}

@media (max-width: 480px) {
    .oopm-comparison-section { padding: 61px 0; }
    .oopm-card-luxe { grid-template-columns: 1fr; }
}


/* Force Mobile Table Cards */
@media screen and (max-width: 768px) {
    .oopm-companies-section .oopm-companies-table-wrapper {
        overflow: visible !important;
        background: transparent !important;
    }

    .oopm-companies-section table.oopm-companies-table {
        display: block !important;
        width: 100% !important;
    }

    .oopm-companies-section .oopm-companies-table thead {
        display: none !important;
    }

    .oopm-companies-section .oopm-companies-table tbody,
    .oopm-companies-section .oopm-companies-table tr {
        display: block !important;
        width: 100% !important;
    }

    .oopm-companies-section .oopm-companies-table tbody tr.oopm-company-row {
        background: #fff !important;
        margin-bottom: 21px !important;
        border-radius: 14px !important;
        box-shadow: 0 5px 24px rgba(93,33,41,0.1) !important;
        padding: 17px !important;
        border: 2px solid rgba(92,23,48,0.08);
    }

    .oopm-companies-section .oopm-companies-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 11px 0 !important;
        border: none !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }

    .oopm-companies-section .oopm-companies-table td:last-child {
        border-bottom: none !important;
    }

    .oopm-companies-section .oopm-companies-table td::before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        color: #641525 !important;
        flex-shrink: 0 !important;
        margin-right: 16px !important;
        font-size: 0.85rem !important;
    }

    .oopm-companies-section .oopm-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 14px !important;
        border-bottom: 3px solid #eeebd2 !important;
    }

    .oopm-companies-section .oopm-td-company::before {
        display: none !important;
    }

    .oopm-companies-section .oopm-td-rank {
        justify-content: center !important;
        padding-top: 0 !important;
        border-bottom: none !important;
    }

    .oopm-companies-section .oopm-td-rank::before {
        display: none !important;
    }

    .oopm-companies-section .oopm-td-action {
        flex-direction: column !important;
        padding-top: 16px !important;
        border-top: 1px solid #f5ead7 !important;
        border-bottom: none !important;
    }

    .oopm-companies-section .oopm-td-action::before {
        display: none !important;
    }

    .oopm-companies-section .oopm-td-action .oopm-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 16px 23px !important;
        font-size: 1rem !important;
    }
}

/* Company Logo Styles */
.oopm-company-logo {
    width: auto !important;
    height: 45px !important;
    max-width: 140px !important;
    max-height: 45px !important;
    object-fit: contain !important;
    margin-bottom: 13px;
}

@media screen and (max-width: 768px) {
    .oopm-company-logo {
        display: block !important;
        margin: 0 auto 12px auto !important;
    }

    .oopm-companies-section .oopm-td-company .oopm-company-info {
        text-align: center;
    }
}


/* Hamburger Menu Styles */
.oopm-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 7px;
}

.oopm-menu-line {
    width: 27px;
    height: 3px;
    background: var(--oopm-text, #243450);
    border-radius: 1px;
    transition: 0.3s;
}

.oopm-menu-toggle.active .oopm-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.oopm-menu-toggle.active .oopm-menu-line:nth-child(2) {
    opacity: 0;
}

.oopm-menu-toggle.active .oopm-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .oopm-menu-toggle {
        display: flex;
    }
}


/* Header Container Fix */
.oopm-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 17px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.oopm-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Navigation Responsive Fix */
@media (max-width: 768px) {
    .oopm-nav {
        display: none !important;
    }

    .oopm-menu-toggle {
        display: flex !important;
    }
}


/* Mobile Navigation Hidden by Default */
.oopm-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 18px 23px;
    border-top: 2px solid #eee;
}

.oopm-mobile-nav.active {
    display: flex;
}

.oopm-mobile-link {
    padding: 13px 0;
    color: var(--oopm-text, #2e3341);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.oopm-mobile-link:last-child {
    border-bottom: none;
}

.oopm-mobile-link:hover {
    color: var(--oopm-accent, #eb0a1e);
}


/* SVG Logo & Mobile Fixes */
.oopm-logo-svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.oopm-logo-text {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .oopm-logo-svg {
        width: 28px;
        height: 28px;
    }
}

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .oopm-company-logo {
        width: 50vw !important;
        max-width: 50vw !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Center company logos on mobile */
@media screen and (max-width: 768px) {
    .oopm-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .oopm-company-info {
        text-align: center !important;
    }

    .oopm-company-name {
        text-align: center !important;
    }

    .oopm-company-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


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

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