/* ========================================
   ONID Go Travel - Site Styles
   Overrides core/css/style.css
   ======================================== */

/* ========== CSS Variables ========== */
:root {
    --og-primary: #1e5a8e;
    --og-primary-dark: #174d7a;
    --og-primary-light: #2b7ab8;
    --og-accent: #f59e0b;
    --og-accent-light: #fbbf24;
    --og-text: #1f2937;
    --og-text-light: #6b7280;
    --og-bg: #f8fafc;
    --og-white: #ffffff;
    --og-border: #e5e7eb;
}

/* ========== Hero Section ========== */
.og-hero {
    color: #fff;
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slideshow background */
.og-hero-slideshow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.og-hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 36s infinite;
}

.og-hero-slide:nth-child(1) { animation-delay: 0s; }
.og-hero-slide:nth-child(2) { animation-delay: 6s; }
.og-hero-slide:nth-child(3) { animation-delay: 12s; }
.og-hero-slide:nth-child(4) { animation-delay: 18s; }
.og-hero-slide:nth-child(5) { animation-delay: 24s; }
.og-hero-slide:nth-child(6) { animation-delay: 30s; }

@keyframes heroFade {
    0%      { opacity: 0; transform: scale(1); }
    2%      { opacity: 1; }
    16.67%  { opacity: 1; transform: scale(1.05); }
    18.67%  { opacity: 0; transform: scale(1.05); }
    100%    { opacity: 0; transform: scale(1); }
}

/* Dark overlay - disabled */
.og-hero-overlay {
    display: none;
}

.og-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.og-hero-badge {
    display: inline-block;
    background: rgba(245,158,11,0.2);
    color: var(--og-accent-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(245,158,11,0.3);
}

.og-hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.og-hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.og-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--og-accent);
    color: #1f2937;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}

.og-hero-cta:hover {
    background: var(--og-accent-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245,158,11,0.5);
}

.og-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

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

.og-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--og-accent-light);
    display: block;
}

.og-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* ========== Section Common ========== */
.og-section {
    padding: 64px 24px;
}

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

.og-section-tag {
    display: inline-block;
    background: #eff6ff;
    color: var(--og-primary);
    padding: 4px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.og-section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--og-text);
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.og-section-desc {
    font-size: 16px;
    color: var(--og-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== Destinations Grid ========== */
.og-dest-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.og-dest-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--og-white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.og-dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.og-dest-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.og-dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.og-dest-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.og-dest-count {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

.og-dest-body {
    padding: 20px;
}

.og-dest-desc {
    font-size: 14px;
    color: var(--og-text-light);
    line-height: 1.6;
    margin: 0 0 16px;
}

.og-dest-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.og-dest-from {
    font-size: 12px;
    color: var(--og-text-light);
}

.og-dest-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--og-primary);
}

.og-dest-unit {
    font-size: 13px;
    color: var(--og-text-light);
}

/* ========== Packages Grid ========== */
.og-pkg-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.og-pkg-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--og-white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--og-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.og-pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.og-pkg-card.featured {
    border: 2px solid var(--og-accent);
    position: relative;
}

.og-pkg-featured-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--og-accent);
    color: #1f2937;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.og-pkg-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.og-pkg-body {
    padding: 24px;
}

.og-pkg-duration {
    display: inline-block;
    background: #eff6ff;
    color: var(--og-primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.og-pkg-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--og-text);
    margin: 0 0 8px;
}

.og-pkg-desc {
    font-size: 14px;
    color: var(--og-text-light);
    line-height: 1.6;
    margin: 0 0 16px;
}

.og-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.og-pkg-features li {
    font-size: 13px;
    color: var(--og-text);
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    border-bottom: 1px solid #f3f4f6;
}

.og-pkg-features li:last-child { border-bottom: none; }

.og-pkg-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.og-pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--og-border);
}

.og-pkg-price {
    display: flex;
    flex-direction: column;
}

.og-pkg-price-from {
    font-size: 12px;
    color: var(--og-text-light);
}

.og-pkg-price-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--og-primary);
    line-height: 1.2;
}

.og-pkg-price-note {
    font-size: 11px;
    color: var(--og-text-light);
}

.og-pkg-btn {
    background: var(--og-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.og-pkg-btn:hover { background: var(--og-primary-dark); }

/* ========== Why Choose Us ========== */
.og-why {
    background: var(--og-bg);
}

.og-why-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.og-why-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--og-white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.og-why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: #eff6ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.og-why-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--og-text);
    margin: 0 0 8px;
}

.og-why-desc {
    font-size: 14px;
    color: var(--og-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========== Testimonials ========== */
.og-testimonials {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.og-testimonial {
    background: var(--og-white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--og-border);
}

.og-testimonial-stars {
    color: var(--og-accent);
    font-size: 16px;
    margin-bottom: 12px;
}

.og-testimonial-text {
    font-size: 15px;
    color: var(--og-text);
    line-height: 1.7;
    margin: 0 0 16px;
    font-style: italic;
}

.og-testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--og-text);
}

.og-testimonial-trip {
    font-size: 12px;
    color: var(--og-text-light);
    margin-top: 2px;
}

/* ========== CTA Section ========== */
.og-cta {
    background: url('/multi-sites/sites/onid-go/images/cta-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 64px 24px;
    position: relative;
}

.og-cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
}

.og-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.og-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--og-accent);
    color: #1f2937;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.og-cta-btn:hover {
    background: var(--og-accent-light);
    transform: translateY(-1px);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .og-hero {
        padding: 48px 16px 40px;
    }
    .og-hero h1 {
        font-size: 28px;
    }
    .og-hero-sub {
        font-size: 15px;
    }
    .og-hero-stats {
        gap: 24px;
    }
    .og-stat-num {
        font-size: 22px;
    }
    .og-section {
        padding: 40px 16px;
    }
    .og-section-title {
        font-size: 24px;
    }
    .og-dest-grid,
    .og-pkg-grid,
    .og-why-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    .og-testimonials {
        grid-template-columns: 1fr;
    }
    .og-cta h2 {
        font-size: 24px;
    }
}

/* ========== Legal Pages ========== */
.og-legal-page {
    background: var(--og-white);
    min-height: 60vh;
}

.og-legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 64px;
}

.og-legal-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--og-text);
    margin: 0 0 8px;
}

.og-legal-updated {
    font-size: 14px;
    color: var(--og-text-light);
    margin: 0 0 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--og-border);
}

.og-legal-section {
    margin-bottom: 32px;
}

.og-legal-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--og-text);
    margin: 0 0 12px;
    padding-top: 8px;
}

.og-legal-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--og-text);
    margin: 16px 0 8px;
}

.og-legal-section p {
    font-size: 15px;
    color: #374151;
    line-height: 1.8;
    margin: 0 0 12px;
}

.og-legal-section ul {
    padding-left: 24px;
    margin: 8px 0 16px;
}

.og-legal-section ul li {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 6px;
}

.og-legal-contact {
    background: #f8fafc;
    border: 1px solid var(--og-border);
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 12px;
}

.og-legal-contact p {
    margin: 0 0 6px;
    font-size: 14px;
}

.og-legal-contact p:last-child {
    margin-bottom: 0;
}

.og-legal-back {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--og-border);
}

.og-legal-back-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--og-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.og-legal-back-link:hover {
    color: var(--og-primary-dark);
    text-decoration: underline;
}

/* Refund Table */
.og-refund-table {
    margin: 16px 0;
    overflow-x: auto;
}

.og-refund-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.og-refund-table th {
    background: #f1f5f9;
    color: var(--og-text);
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--og-border);
}

.og-refund-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
}

.og-refund-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .og-legal-container {
        padding: 32px 16px 48px;
    }
    .og-legal-title {
        font-size: 24px;
    }
    .og-legal-section h2 {
        font-size: 18px;
    }
}

/* ========== Tablet ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    .og-dest-grid,
    .og-pkg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .og-why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ========== Booking Modal ========== */
.og-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
.og-modal-overlay.active {
    display: flex;
}
.og-modal {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    animation: ogModalIn 0.25s ease;
}
@keyframes ogModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.og-modal__header {
    background: #1e5a8e;
    color: #fff;
    padding: 20px 24px;
}
.og-modal__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}
.og-modal__body {
    padding: 24px;
}
.og-modal__warning {
    background: #e8f4fd;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #1e5a8e;
}
.og-modal__warning-title {
    font-weight: 700;
    color: #1e5a8e;
    margin-bottom: 4px;
}
.og-modal__warning-text {
    font-size: 14px;
    color: #2c6fa0;
    line-height: 1.5;
}
.og-modal__details {
    margin-bottom: 20px;
}
.og-modal__row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.og-modal__label {
    color: #666;
    font-size: 14px;
}
.og-modal__value {
    font-weight: 600;
    color: #1f2937;
}
.og-modal__value--highlight {
    color: #1e5a8e;
    font-size: 16px;
}
.og-modal__confirm-text {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-top: 8px;
}
.og-modal__footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    background: #f9fafb;
}
.og-modal__btn {
    flex: 1;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.og-modal__btn--cancel {
    background: #e5e7eb;
    color: #374151;
}
.og-modal__btn--cancel:hover {
    background: #d1d5db;
}
.og-modal__btn--confirm {
    background: #1e5a8e;
    color: #fff;
}
.og-modal__btn--confirm:hover {
    background: #174d7a;
}

/* ========== Destination Card Clickable ========== */
.og-dest-card[data-dest-pkg] {
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}
.og-dest-card[data-dest-pkg]:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* ========== FAQ Section ========== */
.og-faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.og-faq-item {
    border-bottom: 1px solid #e5e7eb;
}
.og-faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}
.og-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    gap: 16px;
}
.og-faq-q:hover {
    color: #1e5a8e;
}
.og-faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #9ca3af;
}
.og-faq-item.active .og-faq-arrow {
    transform: rotate(180deg);
    color: #1e5a8e;
}
.og-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    padding: 0 4px;
}
.og-faq-item.active .og-faq-a {
    max-height: 300px;
    padding: 0 4px 20px;
}

/* ========== About Us Page ========== */
.og-about-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: #fff;
    padding: 80px 24px 60px;
}
.og-about-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,23,42,0.65);
}
.og-about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.og-about-hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 16px 0 12px;
}
.og-about-hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}
.og-about-content {
    max-width: 800px;
    margin: 0 auto;
}
.og-about-text p {
    font-size: 16px;
    color: #374151;
    line-height: 1.8;
    margin: 0 0 16px;
}
.og-about-values {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.og-about-value {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--og-border);
}
.og-about-value-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.og-about-value h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--og-text);
    margin: 0 0 8px;
}
.og-about-value p {
    font-size: 14px;
    color: var(--og-text-light);
    line-height: 1.7;
    margin: 0;
}
.og-about-stats {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.og-about-stat {
    padding: 24px;
    background: #eff6ff;
    border-radius: 12px;
}
.og-about-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--og-primary);
}
.og-about-stat-label {
    display: block;
    font-size: 13px;
    color: var(--og-text-light);
    margin-top: 6px;
}
.og-about-team {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.og-about-member {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 28px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--og-border);
}
.og-about-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--og-primary);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.og-about-member h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--og-text);
    margin: 0 0 4px;
}
.og-about-role {
    display: block;
    font-size: 13px;
    color: var(--og-primary);
    font-weight: 600;
    margin-bottom: 10px;
}
.og-about-member p {
    font-size: 13px;
    color: var(--og-text-light);
    line-height: 1.6;
    margin: 0;
}
.og-about-cta {
    background: var(--og-primary);
    color: #fff;
    text-align: center;
    padding: 56px 24px;
}
.og-about-cta h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px;
}
.og-about-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .og-about-hero { padding: 48px 16px 40px; }
    .og-about-hero-content h1 { font-size: 26px; }
    .og-about-values { grid-template-columns: 1fr; }
    .og-about-stats { grid-template-columns: repeat(2, 1fr); }
    .og-about-team { grid-template-columns: 1fr 1fr; }
}

/* ========== Contact Us Page ========== */
.og-contact-hero {
    background: linear-gradient(135deg, #1e5a8e 0%, #0f172a 100%);
    color: #fff;
    text-align: center;
    padding: 56px 24px 48px;
}
.og-contact-hero h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 16px 0 12px;
}
.og-contact-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}
.og-contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: flex-start;
}
.og-contact-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--og-border);
}
.og-contact-form-wrapper h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--og-text);
    margin: 0 0 4px;
}
.og-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.og-form-group {
    margin-bottom: 16px;
}
.og-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--og-text);
    margin-bottom: 6px;
}
.og-form-group input,
.og-form-group select,
.og-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid var(--og-border);
    border-radius: 8px;
    outline: none;
    transition: border 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}
.og-form-group input:focus,
.og-form-group select:focus,
.og-form-group textarea:focus {
    border-color: var(--og-primary);
    box-shadow: 0 0 0 3px rgba(30,90,142,0.1);
}
.og-form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.og-contact-submit {
    width: 100%;
    padding: 14px;
    background: var(--og-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.og-contact-submit:hover { background: var(--og-primary-dark); }
.og-contact-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.og-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.og-contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--og-border);
}
.og-contact-card-icon {
    font-size: 24px;
    margin-bottom: 8px;
}
.og-contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--og-text);
    margin: 0 0 10px;
}
.og-contact-card p {
    font-size: 14px;
    color: #374151;
    margin: 0 0 4px;
    line-height: 1.5;
}
.og-contact-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}
.og-contact-social a {
    font-size: 14px;
    color: var(--og-primary);
    text-decoration: none;
    font-weight: 500;
}
.og-contact-social a:hover { text-decoration: underline; }
.og-contact-map-note {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 32px;
}
.og-contact-map-note p {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .og-contact-hero h1 { font-size: 24px; }
    .og-contact-grid { grid-template-columns: 1fr; padding: 32px 16px; }
    .og-form-row { grid-template-columns: 1fr; }
}

/* ========== Footer Payment Icons ========== */
.og-footer-payments {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.og-payment-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}
