/* Rolex Vibrant Style - Auto-themed */
:root {
    --gbkk-primary: #0e203d;
    --gbkk-primary-light: #4a5372;
    --gbkk-primary-dark: #0f2749;
    --gbkk-accent: #3b79f0;
    --gbkk-gold: #317df4;
    --gbkk-gold-light: #ea5564;
    --gbkk-gold-dark: #af303d;
    --gbkk-bg: #FFFFFF;
    --gbkk-bg-dark: #0d0d0d;
    --gbkk-bg-alt: #FFF5F5;
    --gbkk-text: #141f46;
    --gbkk-text-muted: #616e77;
    --gbkk-text-light: #57717c;
    --gbkk-border: #f5c3d8;
    --gbkk-border-light: #f0efe8;
    --gbkk-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --gbkk-shadow-gold: rgba(200,166,97,0.25);
    --gbkk-success: #268450;
    --gbkk-danger: #c73332;
    --gbkk-radius: 3px;
    --gbkk-radius-lg: 17px;
    --gbkk-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.75;
    color: var(--gbkk-text);
    background: var(--gbkk-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gbkk-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 31px;
}

/* Top Bar */
.gbkk-topbar {
    background: linear-gradient(90deg, var(--gbkk-bg-dark) 0%, #142023 100%);
    padding: 14px 0;
    border-bottom: 2px solid rgba(199,156,105,0.15);
}

.gbkk-topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.gbkk-topbar-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    letter-spacing: 0.4px;
}

.gbkk-topbar-highlight {
    color: var(--gbkk-accent);
    font-weight: 600;
}

/* Header */
.gbkk-header {
    background: #ffffff;
    border-bottom: 1px solid var(--gbkk-border);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.gbkk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.gbkk-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--gbkk-text);
}

.gbkk-logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--gbkk-primary) 0%, var(--gbkk-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--gbkk-shadow);
    position: relative;
    overflow: hidden;
}

.gbkk-logo-mark::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 2px solid var(--gbkk-accent);
    border-radius: 50%;
    opacity: 0.6;
}

.gbkk-logo-mark span {
    color: var(--gbkk-accent);
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.gbkk-logo-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
}

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

/* Navigation */
.gbkk-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gbkk-nav-link {
    color: var(--gbkk-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 19px;
    border-radius: var(--gbkk-radius);
    transition: all var(--gbkk-transition);
    position: relative;
}

.gbkk-nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gbkk-primary);
    transform: scaleX(0);
    transition: transform var(--gbkk-transition);
}

.gbkk-nav-link:hover {
    color: var(--gbkk-primary);
}

.gbkk-nav-link:hover::after,
.gbkk-nav-link.is-active::after {
    transform: scaleX(1);
}

.gbkk-nav-link.is-active {
    color: var(--gbkk-primary);
    font-weight: 600;
}

.gbkk-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    background: linear-gradient(145deg, var(--gbkk-primary) 0%, var(--gbkk-primary-dark) 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--gbkk-radius);
    transition: all var(--gbkk-transition);
    box-shadow: 0 4px 12px var(--gbkk-shadow);
}

.gbkk-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--gbkk-shadow);
}

/* Burger Menu */
.gbkk-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.gbkk-burger-line {
    width: 26px;
    height: 2px;
    background: var(--gbkk-text);
    transition: all 0.3s ease;
    border-radius: 1px;
}

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

.gbkk-burger.is-open .gbkk-burger-line:nth-child(2) {
    opacity: 0;
}

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

.gbkk-mobile-menu {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid var(--gbkk-border);
    padding: 21px;
}

.gbkk-mobile-menu.is-open {
    display: block;
}

.gbkk-mobile-link {
    display: block;
    padding: 12px 0;
    color: var(--gbkk-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--gbkk-border-light);
}

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

/* Hero Section */
.gbkk-hero {
    background: linear-gradient(165deg, var(--gbkk-bg-dark) 0%, #112c24 40%, var(--gbkk-primary-dark) 100%);
    padding: 90px 0 82px;
    position: relative;
    overflow: hidden;
}

.gbkk-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(196,159,99,0.12) 0%, transparent 60%);
}

.gbkk-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.gbkk-hero-badge {
    display: inline-block;
    padding: 10px 23px;
    background: rgba(195,166,107,0.15);
    border: 1px solid rgba(206,156,94,0.35);
    border-radius: 29px;
    color: var(--gbkk-accent);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 30px;
}

.gbkk-hero-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 52px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gbkk-hero-title em {
    font-style: normal;
    color: var(--gbkk-accent);
}

.gbkk-hero-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 34px;
}

.gbkk-hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.gbkk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 13px 34px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--gbkk-radius);
    transition: all var(--gbkk-transition);
    border: none;
    cursor: pointer;
}

.gbkk-btn-gold {
    background: linear-gradient(145deg, var(--gbkk-accent) 0%, var(--gbkk-gold-dark) 100%);
    color: var(--gbkk-bg-dark);
    box-shadow: 0 4px 16px var(--gbkk-shadow-gold);
}

.gbkk-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px var(--gbkk-shadow-gold);
}

.gbkk-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gbkk-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Trust Badges */
.gbkk-trust-strip {
    background: #ffffff;
    padding: 34px 0;
    border-bottom: 2px solid var(--gbkk-border);
}

.gbkk-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.gbkk-trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.gbkk-trust-icon {
    width: 46px;
    height: 48px;
    background: linear-gradient(145deg, var(--gbkk-bg-alt) 0%, #ffffff 100%);
    border: 1px solid var(--gbkk-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gbkk-primary);
    font-size: 20px;
}

.gbkk-trust-text {
    font-size: 14px;
    color: var(--gbkk-text-muted);
    line-height: 1.4;
}

.gbkk-trust-text strong {
    display: block;
    color: var(--gbkk-text);
    font-weight: 600;
}

/* Company Rankings Section */
.gbkk-rankings {
    padding: 83px 0;
    background: var(--gbkk-bg);
}

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

.gbkk-section-tag {
    display: inline-block;
    padding: 7px 14px;
    background: rgba(10,90,60,0.08);
    color: var(--gbkk-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    border-radius: 17px;
    margin-bottom: 18px;
}

.gbkk-section-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--gbkk-text);
    margin-bottom: 16px;
}

.gbkk-section-subtitle {
    font-size: 18px;
    color: var(--gbkk-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Company Cards */
.gbkk-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 31px;
}

.gbkk-company-card {
    background: #ffffff;
    border: 1px solid var(--gbkk-border);
    border-radius: var(--gbkk-radius-lg);
    padding: 34px;
    transition: all var(--gbkk-transition);
    position: relative;
}

.gbkk-company-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--gbkk-primary);
}

.gbkk-company-card.is-featured {
    border: 2px solid var(--gbkk-primary);
    box-shadow: 0 8px 32px var(--gbkk-shadow);
}

.gbkk-company-card.is-featured::before {
    content: 'Editor\'s Choice';
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--gbkk-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 7px 12px;
    border-radius: 0 0 var(--gbkk-radius) var(--gbkk-radius);
}

.gbkk-company-rank {
    width: 35px;
    height: 36px;
    background: var(--gbkk-bg-alt);
    border: 1px solid var(--gbkk-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gbkk-primary);
    margin-bottom: 23px;
}

.gbkk-company-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 17px;
}

.gbkk-company-name {
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gbkk-text);
    margin-bottom: 5px;
}

.gbkk-company-tagline {
    font-size: 14px;
    color: var(--gbkk-primary);
    font-weight: 500;
    margin-bottom: 13px;
}

.gbkk-company-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
}

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

.gbkk-score {
    font-size: 13px;
    font-weight: 700;
    color: var(--gbkk-text);
}

.gbkk-company-meta {
    display: flex;
    gap: 19px;
    padding: 19px 0;
    border-top: 1px solid var(--gbkk-border-light);
    border-bottom: 1px solid var(--gbkk-border-light);
    margin-bottom: 23px;
}

.gbkk-meta-item {
    font-size: 13px;
    color: var(--gbkk-text-muted);
}

.gbkk-meta-item strong {
    color: var(--gbkk-text);
    font-weight: 600;
}

.gbkk-company-actions {
    display: flex;
    gap: 13px;
}

.gbkk-company-btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: var(--gbkk-radius);
    transition: all var(--gbkk-transition);
}

.gbkk-company-btn-primary {
    background: var(--gbkk-primary);
    color: #ffffff;
}

.gbkk-company-btn-primary:hover {
    background: var(--gbkk-primary-dark);
}

.gbkk-company-btn-secondary {
    background: var(--gbkk-bg-alt);
    color: var(--gbkk-text);
    border: 1px solid var(--gbkk-border);
}

.gbkk-company-btn-secondary:hover {
    background: var(--gbkk-border-light);
}

/* Content Section */
.gbkk-content {
    padding: 72px 0;
    background: #ffffff;
}

.gbkk-article {
    max-width: 780px;
    margin: 0 auto;
}

.gbkk-article h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--gbkk-text);
    margin: 53px 0 22px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gbkk-border-light);
}

.gbkk-article h2:first-child {
    margin-top: 0;
}

.gbkk-article h3 {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gbkk-primary-dark);
    margin: 38px 0 21px 0;
}

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

.gbkk-article ul,
.gbkk-article ol {
    margin: 22px 0;
    padding-left: 27px;
}

.gbkk-article li {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gbkk-text);
    margin-bottom: 9px;
}

.gbkk-article li::marker {
    color: var(--gbkk-primary);
}

/* Quick Facts Box */
.gbkk-facts-box {
    background: linear-gradient(145deg, var(--gbkk-bg-alt) 0%, #ffffff 100%);
    border: 1px solid var(--gbkk-border);
    border-left: 4px solid var(--gbkk-primary);
    border-radius: var(--gbkk-radius-lg);
    margin: 40px 0;
    overflow: hidden;
}

.gbkk-facts-header {
    background: var(--gbkk-primary);
    padding: 19px 26px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.gbkk-facts-icon {
    width: 45px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gbkk-accent);
    font-size: 18px;
}

.gbkk-facts-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.gbkk-facts-body {
    padding: 0;
}

.gbkk-fact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 29px;
    border-bottom: 1px solid var(--gbkk-border-light);
}

.gbkk-fact-row:last-child {
    border-bottom: none;
}

.gbkk-fact-row:nth-child(odd) {
    background: rgba(10,92,62,0.02);
}

.gbkk-fact-label {
    font-size: 15px;
    color: var(--gbkk-text-muted);
}

.gbkk-fact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--gbkk-text);
}

/* Social Share */
.gbkk-share-box {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 26px 0;
    margin: 35px 0;
    border-top: 1px solid var(--gbkk-border-light);
    border-bottom: 1px solid var(--gbkk-border-light);
}

.gbkk-share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gbkk-text-muted);
}

.gbkk-share-links {
    display: flex;
    gap: 9px;
}

.gbkk-share-link {
    width: 43px;
    height: 40px;
    background: var(--gbkk-bg-alt);
    border: 1px solid var(--gbkk-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gbkk-text-muted);
    text-decoration: none;
    font-size: 16px;
    transition: all var(--gbkk-transition);
}

.gbkk-share-link:hover {
    background: var(--gbkk-primary);
    color: #ffffff;
    border-color: var(--gbkk-primary);
}

/* Article Image */
.gbkk-article-image {
    margin: 40px 0;
    border-radius: var(--gbkk-radius-lg);
    overflow: hidden;
    box-shadow: 0 9px 30px rgba(0, 0, 0, 0.08);
}

.gbkk-article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.gbkk-image-caption {
    background: var(--gbkk-bg-alt);
    padding: 13px 23px;
    font-size: 11px;
    color: var(--gbkk-text-muted);
    text-align: center;
}

/* FAQ Accordion */
.gbkk-faq {
    padding: 72px 0;
    background: var(--gbkk-bg-alt);
}

.gbkk-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gbkk-faq-item {
    background: #ffffff;
    border: 1px solid var(--gbkk-border);
    border-radius: var(--gbkk-radius-lg);
    overflow: hidden;
    transition: all var(--gbkk-transition);
}

.gbkk-faq-item:hover {
    border-color: var(--gbkk-primary);
}

.gbkk-faq-item.is-active {
    border-color: var(--gbkk-primary);
    box-shadow: 0 4px 20px var(--gbkk-shadow);
}

.gbkk-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 23px;
    padding: 19px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.gbkk-faq-question-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--gbkk-text);
}

.gbkk-faq-icon {
    width: 32px;
    height: 32px;
    background: var(--gbkk-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gbkk-primary);
    font-size: 18px;
    transition: all var(--gbkk-transition);
    flex-shrink: 0;
}

.gbkk-faq-item.is-active .gbkk-faq-icon {
    background: var(--gbkk-primary);
    color: #ffffff;
    transform: rotate(180deg);
}

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

.gbkk-faq-item.is-active .gbkk-faq-answer {
    max-height: 600px;
}

.gbkk-faq-answer-content {
    padding: 0 31px 21px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--gbkk-text-muted);
}

/* Footer */
.gbkk-footer {
    background: var(--gbkk-bg-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 73px 0 40px;
}

.gbkk-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 49px;
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.gbkk-footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
}

.gbkk-footer-logo-mark {
    width: 43px;
    height: 40px;
    background: var(--gbkk-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gbkk-accent);
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-weight: 700;
}

.gbkk-footer-logo-text {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: #ffffff;
}

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

.gbkk-footer-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 17px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

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

.gbkk-footer-links li {
    margin-bottom: 15px;
}

.gbkk-footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--gbkk-transition);
}

.gbkk-footer-links a:hover {
    color: var(--gbkk-accent);
}

.gbkk-footer-disclaimer {
    padding: 33px 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.gbkk-footer-bottom {
    padding-top: 23px;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
}

/* Contact Form Styles */
.gbkk-contact-section {
    padding: 57px 0;
}

.gbkk-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 52px;
    margin-top: 43px;
}

.gbkk-contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.gbkk-contact-item {
    display: flex;
    gap: 19px;
    align-items: flex-start;
}

.gbkk-contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--gbkk-primary) 0%, var(--gbkk-primary-dark) 100%);
    border-radius: var(--gbkk-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gbkk-accent);
    font-size: 22px;
    flex-shrink: 0;
}

.gbkk-contact-details h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gbkk-text);
    margin-bottom: 5px;
}

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

.gbkk-form-wrapper {
    background: var(--gbkk-bg-alt);
    padding: 36px;
    border-radius: var(--gbkk-radius-lg);
    border: 2px solid var(--gbkk-border);
}

.gbkk-form-group {
    margin-bottom: 20px;
}

.gbkk-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gbkk-text);
    margin-bottom: 11px;
}

.gbkk-form-input,
.gbkk-form-select,
.gbkk-form-textarea {
    width: 100%;
    padding: 11px 20px;
    font-size: 18px;
    font-family: inherit;
    background: #ffffff;
    border: 1px solid var(--gbkk-border);
    border-radius: var(--gbkk-radius);
    transition: all var(--gbkk-transition);
}

.gbkk-form-input:focus,
.gbkk-form-select:focus,
.gbkk-form-textarea:focus {
    outline: none;
    border-color: var(--gbkk-primary);
    box-shadow: 0 0 0 3px var(--gbkk-shadow);
}

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

.gbkk-form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(145deg, var(--gbkk-primary) 0%, var(--gbkk-primary-dark) 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--gbkk-radius);
    cursor: pointer;
    transition: all var(--gbkk-transition);
}

.gbkk-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--gbkk-shadow);
}

.gbkk-form-success {
    display: none;
    padding: 24px;
    background: rgba(50,133,84,0.1);
    border: 1px solid rgba(49,139,75,0.25);
    border-radius: var(--gbkk-radius);
    color: var(--gbkk-success);
    text-align: center;
    margin-top: 18px;
}

.gbkk-form-success.is-active {
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .gbkk-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 39px;
    }
}

@media (max-width: 768px) {
    .gbkk-wrapper {
        padding: 0 22px;
    }

    .gbkk-nav {
        display: none;
    }

    .gbkk-header-btn {
        display: none;
    }

    .gbkk-burger {
        display: flex;
    }

    .gbkk-hero {
        padding: 63px 0;
    }

    .gbkk-hero-title {
        font-size: 36px;
    }

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

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

    .gbkk-btn {
        width: 100%;
    }

    .gbkk-trust-badges {
        gap: 22px;
    }

    .gbkk-section-title {
        font-size: 30px;
    }

    .gbkk-companies-grid {
        grid-template-columns: 1fr;
    }

    .gbkk-article h2 {
        font-size: 26px;
    }

    .gbkk-article h3 {
        font-size: 20px;
    }

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

    .gbkk-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .gbkk-faq-question {
        padding: 21px 20px;
    }

    .gbkk-faq-answer-content {
        padding: 0 21px 18px;
    }

    .gbkk-form-wrapper {
        padding: 23px;
    }
}

/* ===== COMPANIES COMPARISON TABLE ===== */
.gbkk-companies-table-section {
    padding: 63px 0;
    background: var(--gbkk-bg-alt);
}

.gbkk-table-container {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 1100px;
    border-radius: var(--gbkk-radius-lg);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.gbkk-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 15px;
}

.gbkk-companies-table thead {
    background: linear-gradient(145deg, var(--gbkk-primary) 0%, var(--gbkk-primary-dark) 100%);
}

.gbkk-companies-table th {
    padding: 19px 14px;
    text-align: left;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
}

.gbkk-companies-table th:first-child {
    border-radius: var(--gbkk-radius-lg) 0 0 0;
}

.gbkk-companies-table th:last-child {
    border-radius: 0 var(--gbkk-radius-lg) 0 0;
}

.gbkk-companies-table td {
    padding: 13px;
    border-bottom: 2px solid var(--gbkk-border-light);
    color: var(--gbkk-text-muted);
    vertical-align: middle;
}

.gbkk-companies-table tbody tr:hover {
    background: var(--gbkk-bg-alt);
}

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

.gbkk-companies-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 var(--gbkk-radius-lg);
}

.gbkk-companies-table tbody tr:last-child td:last-child {
    border-radius: 0 0 var(--gbkk-radius-lg) 0;
}

.gbkk-table-company {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gbkk-table-rank {
    width: 28px;
    height: 28px;
    background: var(--gbkk-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.gbkk-table-rank.top {
    background: linear-gradient(145deg, var(--gbkk-accent) 0%, var(--gbkk-gold-dark) 100%);
    color: var(--gbkk-bg-dark);
}

.gbkk-table-name {
    font-weight: 600;
    color: var(--gbkk-text);
}

.gbkk-table-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gbkk-table-stars {
    color: var(--gbkk-accent);
    font-size: 14px;
    letter-spacing: 1px;
}

.gbkk-table-score {
    font-weight: 600;
    color: var(--gbkk-text);
}

.gbkk-table-fee {
    font-weight: 600;
    color: var(--gbkk-text);
}

.gbkk-table-minimum {
    font-weight: 500;
}

.gbkk-table-feature {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(10,98,52,0.08);
    color: var(--gbkk-primary);
    border-radius: 21px;
    font-size: 10px;
    font-weight: 500;
}

.gbkk-table-cta {
    display: inline-block;
    padding: 9px 23px;
    background: linear-gradient(145deg, var(--gbkk-primary) 0%, var(--gbkk-primary-dark) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--gbkk-radius);
    font-weight: 600;
    font-size: 10px;
    transition: all var(--gbkk-transition);
    white-space: nowrap;
}

.gbkk-table-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--gbkk-shadow);
}

/* Mobile Cards View */
.gbkk-companies-cards {
    display: none;
    flex-direction: column;
    gap: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.gbkk-company-card-mobile {
    background: #ffffff;
    border-radius: var(--gbkk-radius-lg);
    padding: 23px;
    border: 2px solid var(--gbkk-border);
    transition: all var(--gbkk-transition);
}

.gbkk-company-card-mobile:hover {
    border-color: var(--gbkk-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.gbkk-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 19px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gbkk-border-light);
}

.gbkk-card-company {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gbkk-card-rank {
    width: 31px;
    height: 32px;
    background: var(--gbkk-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.gbkk-card-rank.top {
    background: linear-gradient(145deg, var(--gbkk-accent) 0%, var(--gbkk-gold-dark) 100%);
    color: var(--gbkk-bg-dark);
}

.gbkk-card-name {
    font-family: 'Georgia', serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--gbkk-text);
}

.gbkk-card-rating {
    display: flex;
    align-items: center;
    gap: 7px;
}

.gbkk-card-stars {
    color: var(--gbkk-accent);
    font-size: 14px;
}

.gbkk-card-score {
    font-weight: 600;
    color: var(--gbkk-text);
}

.gbkk-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-bottom: 14px;
}

.gbkk-card-detail {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.gbkk-card-label {
    font-size: 15px;
    color: var(--gbkk-text-light);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.gbkk-card-value {
    font-weight: 600;
    color: var(--gbkk-text);
}

.gbkk-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 19px;
}

.gbkk-card-feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    background: rgba(10,94,51,0.08);
    color: var(--gbkk-primary);
    border-radius: 19px;
    font-size: 15px;
    font-weight: 500;
}

.gbkk-card-cta {
    display: block;
    width: 100%;
    padding: 11px 22px;
    background: linear-gradient(145deg, var(--gbkk-primary) 0%, var(--gbkk-primary-dark) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--gbkk-radius);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    transition: all var(--gbkk-transition);
}

.gbkk-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--gbkk-shadow);
}

@media (max-width: 900px) {
    .gbkk-table-container {
        display: none;
    }

    .gbkk-companies-cards {
        display: flex;
    }
}

@media (max-width: 500px) {
    .gbkk-card-details {
        grid-template-columns: 1fr;
    }
}


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

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

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

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

    .gbkk-companies-section .gbkk-companies-table tbody tr.gbkk-company-row {
        background: #fff !important;
        margin-bottom: 22px !important;
        border-radius: 19px !important;
        box-shadow: 0 4px 25px rgba(95,35,49,0.1) !important;
        padding: 18px !important;
        border: 1px solid rgba(94,25,52,0.08);
    }

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

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

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

    .gbkk-companies-section .gbkk-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 19px !important;
        border-bottom: 2px solid #f2eecd !important;
    }

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

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

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

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

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

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

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

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

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

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

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

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


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

.gbkk-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) {
    .gbkk-nav {
        display: none !important;
    }

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


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

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

.gbkk-mobile-link {
    padding: 12px 0;
    color: var(--gbkk-text, #23374d);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

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

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


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

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

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

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .gbkk-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) {
    .gbkk-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

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

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

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


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

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