/* ── Fonts ── */
@font-face { font-family: 'Copperplate'; src: url('copperplategothic_bold.ttf'); }
@font-face { font-family: 'Tekst Light';   src: url('Inter_18pt-Light.ttf'); }
@font-face { font-family: 'Tekst Regular'; src: url('Inter_18pt-Regular.ttf'); }

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

html { scroll-behavior: smooth; }

body {
    margin: 0; padding: 0;
    background-color: #0b1125;
    color: #fdf9f2;
    font-family: 'DM Sans', sans-serif;
}

body::-webkit-scrollbar { display: none; }

/* ════════════════════════════════
    HEADER
════════════════════════════════ */
.headermain {
    height: 70px;
    background-color: #0b1125;
    position: sticky;
    top: 0; z-index: 9999;
    border-bottom: 3px solid #C9A24D;
}
.headerlayout {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 70px;
}
.left-header { flex: 1; }
.left-header img { height: 70px; width: auto; margin-left: 15px; }
.right-header {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 15px;
}
.right-header img { height: 70px; width: auto; }
.middle-header {
    flex: 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    white-space: nowrap;
}
.header-button-container { margin: 0 20px; }
.header-button-container a {
    border: 0;
    background-color: #0b1125;
    color: #e6d3a3;
    font-family: 'Copperplate';
    font-size: 30px;
    text-decoration: none;
    position: relative;
}
.header-button-container a::after {
    content: '';
    background-color: #fff;
    height: 3px;
    width: 100%;
    position: absolute;
    bottom: 0; left: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 250ms ease;
}
.header-button-container a:hover::after { transform: scaleX(1); }
.header-button-container a:hover { cursor: pointer; }

@media (max-width: 666px) {
    .header-button-container { margin: 0 4px; }
    .left-header img { height: 45px; margin-left: 8px; }
    .right-header img { height: 45px; }
    .right-header { margin-right: 0; }
    .middle-header { flex: 1; min-width: 0; }
    .header-button-container a { font-size: 17px; }
}

/* ════════════════════════════════
    HERO (Full viewport height)
════════════════════════════════ */
.detail-hero {
    position: relative;
    min-height: calc(100vh - 73px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 3px solid #C9A24D;
}
.detail-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1735352312589-945e0819f8ea?q=80&w=1400&auto=format&fit=crop');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.35);
    z-index: 0;
}
.detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0b1125 15%, transparent 70%);
    z-index: 1;
}
.detail-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}
.detail-hero__tag {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(200,150,42,0.5);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f0c45a;
    margin-bottom: 22px;
}
.detail-hero__title {
    font-family: 'Copperplate';
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    color: #fdf9f2;
    margin: 0 0 16px;
    line-height: 1.1;
}
.detail-hero__title span {
    background: linear-gradient(135deg, #f0c45a, #c8962a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.detail-hero__sub {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(253,249,242,0.6);
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 28px;
}
.detail-hero__cta {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #C9A24D 0%, #f0c45a 100%);
    border: none;
    border-radius: 999px;
    color: #0b1125;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(200, 150, 42, 0.3);
}
.detail-hero__cta:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 15px 40px rgba(200, 150, 42, 0.4);
}

@media (max-width: 768px) {
    .detail-hero__content { padding: 48px 24px; }
    .detail-hero__cta {
        font-size: 0.8rem;
        padding: 12px 28px;
    }
}

/* ════════════════════════════════
    PRICE SECTION
════════════════════════════════ */
.price-section {
    padding: 80px 40px;
    border-bottom: 3px solid #C9A24D;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}
.price-section__label {
    font-family: 'Copperplate';
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c8962a;
    margin-bottom: 8px;
    text-align: center;
}
.price-cards {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
}
.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background: #162040;
    border: 1px solid rgba(200,150,42,0.2);
    border-radius: 24px;
    padding: 40px 32px 36px;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    overflow: hidden;
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200,150,42,0.6), #f0c45a, rgba(200,150,42,0.6), transparent);
}
.price-card:hover {
    border-color: rgba(200,150,42,0.5);
    box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 40px rgba(200,150,42,0.07);
    transform: translateY(-6px);
}
.price-card--featured {
    border-color: rgba(200,150,42,0.45);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.price-card--featured::after {
    content: 'Najpopularnije';
    position: absolute;
    top: 16px; right: 16px;
    padding: 4px 12px;
    background: rgba(200,150,42,0.15);
    border: 1px solid rgba(200,150,42,0.4);
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f0c45a;
}

.price-card--featured2 {
    border-color: rgba(200,150,42,0.45);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.price-card--featured2::after {
    content: 'Najveća vrednost';
    position: absolute;
    top: 16px; right: 16px;
    padding: 4px 12px;
    background: rgba(200,150,42,0.15);
    border: 1px solid rgba(200,150,42,0.4);
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f0c45a;
}
.price-card__name {
    font-family: 'Copperplate';
    font-size: 1.1rem;
    color: #fdf9f2;
    margin: 0 0 8px;
    letter-spacing: 0.05em;
}
.price-card__desc {
    font-size: 0.85rem;
    color: rgba(253,249,242,0.45);
    font-weight: 300;
    margin: 0 0 28px;
    line-height: 1.6;
}
.price-card__amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}
.price-card__currency {
    font-size: 1.4rem;
    font-weight: 500;
    color: #f0c45a;
    line-height: 1;
}
.price-card__number {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #fdf9f2;
    line-height: 1;
}
.price-card__period {
    font-size: 0.85rem;
    color: rgba(253,249,242,0.4);
    font-weight: 300;
    align-self: flex-end;
    padding-bottom: 6px;
}
.price-card__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,150,42,0.3), transparent);
    margin-bottom: 24px;
}
.price-card__features {
    list-style: none;
    padding: 0; margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(253,249,242,0.75);
    font-weight: 300;
}
.price-card__features li::before {
    content: '';
    width: 16px; height: 16px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(200,150,42,0.12);
    border: 1px solid rgba(200,150,42,0.4);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23f0c45a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}
.price-card__cta {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1.5px solid rgba(200,150,42,0.4);
    border-radius: 999px;
    color: #f0c45a;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}
.price-card__cta:hover {
    background: #C9A24D;
    border-color: #C9A24D;
    color: #0b1125;
    transform: scale(1.02);
}


/* ════════════════════════════════
    FEATURES BREAKDOWN
════════════════════════════════ */
.features-section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
    border-bottom: 3px solid #C9A24D;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header__label {
    font-family: 'Copperplate';
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c8962a;
    margin-bottom: 12px;
}
.section-header__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fdf9f2;
    margin: 0;
    line-height: 1.2;
}
.section-header__title span {
    background: linear-gradient(135deg, #f0c45a, #c8962a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.feature-item {
    background: #162040;
    border: 1px solid rgba(200,150,42,0.15);
    border-radius: 20px;
    padding: 32px 28px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-item:hover {
    border-color: rgba(200,150,42,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 30px rgba(200,150,42,0.05);
    transform: translateY(-4px);
}
.feature-item__icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(200,150,42,0.1);
    border: 1px solid rgba(200,150,42,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #f0c45a;
}
.feature-item__icon svg { width: 22px; height: 22px; }
.feature-item__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #fdf9f2;
    margin: 0 0 10px;
}
.feature-item__desc {
    font-size: 0.88rem;
    color: rgba(253,249,242,0.5);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

/* ════════════════════════════════
    PROCESS TIMELINE
════════════════════════════════ */
.process-section {
    padding: 80px 40px;
    border-bottom: 3px solid #C9A24D;
}
.process-inner {
    max-width: 800px;
    margin: 0 auto;
}
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #C9A24D, rgba(200,150,42,0.1));
}
.process-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 0 0 40px;
    position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-step__num {
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #0b1125;
    border: 2px solid #C9A24D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Copperplate';
    font-size: 0.9rem;
    color: #f0c45a;
    position: relative;
    z-index: 1;
    transition: background 0.3s;
}
.process-step:hover .process-step__num {
    background: rgba(200,150,42,0.15);
}
.process-step__body { padding-top: 8px; }
.process-step__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #fdf9f2;
    margin: 0 0 8px;
}
.process-step__desc {
    font-size: 0.88rem;
    color: rgba(253,249,242,0.5);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}
.process-step__time {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c8962a;
    font-weight: 500;
}

/* ════════════════════════════════
    FAQ
════════════════════════════════ */
.faq-section {
    padding: 80px 40px;
    border-bottom: 3px solid #C9A24D;
}
.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #162040;
    border: 1px solid rgba(200,150,42,0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(200,150,42,0.4); }
.faq-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    background: transparent;
    border: none;
    color: #fdf9f2;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}
.faq-item.open .faq-item__q { color: #f0c45a; }
.faq-item__icon {
    width: 22px; height: 22px;
    flex-shrink: 0;
    color: #c8962a;
    transition: transform 0.3s;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.88rem;
    color: rgba(253,249,242,0.55);
    font-weight: 300;
    line-height: 1.75;
    padding: 0 24px;
}
.faq-item.open .faq-item__a {
    max-height: 300px;
    padding: 0 24px 22px;
}

/* ════════════════════════════════
    CTA BANNER
════════════════════════════════ */
.cta-section {
    padding: 80px 40px;
    text-align: center;
}
.cta-box {
    max-width: 680px;
    margin: 0 auto;
    background: #162040;
    border: 1px solid rgba(200,150,42,0.25);
    border-radius: 28px;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200,150,42,0.7), #f0c45a, rgba(200,150,42,0.7), transparent);
}
.cta-box__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: #fdf9f2;
    margin: 0 0 16px;
    line-height: 1.2;
}
.cta-box__title span {
    background: linear-gradient(135deg, #f0c45a, #c8962a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-box__sub {
    font-size: 0.92rem;
    color: rgba(253,249,242,0.5);
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 36px;
}
.cta-box__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary {
    padding: 14px 36px;
    background: #C9A24D;
    border: none;
    border-radius: 999px;
    color: #0b1125;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
    background: #f0c45a;
    transform: scale(1.04);
    box-shadow: 0 8px 30px rgba(200,150,42,0.3);
}
.btn-ghost {
    padding: 14px 36px;
    background: transparent;
    border: 1.5px solid rgba(200,150,42,0.4);
    border-radius: 999px;
    color: #f0c45a;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}
.btn-ghost:hover {
    background: rgba(200,150,42,0.1);
    border-color: rgba(200,150,42,0.7);
    transform: scale(1.04);
}

/* ════════════════════════════════
    FOOTER (from main site)
════════════════════════════════ */
.footer {
    background: #0a1020;
    border-top: 1px solid rgba(200,150,42,0.15);
    font-family: 'DM Sans', sans-serif;
}
.footer__topline {
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%, rgba(200,150,42,0.0) 10%,
        rgba(200,150,42,0.7) 35%, #f0c45a 50%,
        rgba(200,150,42,0.7) 65%, rgba(200,150,42,0.0) 90%,
        transparent 100%);
}
.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 40px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}
.footer__logo { height: 36px; width: auto; margin-bottom: 18px; display: block; }
.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(242,237,226,0.5);
    font-weight: 300;
    margin-bottom: 24px;
}
.footer__socials { display: flex; gap: 12px; }
.footer__social {
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(200,150,42,0.25);
    background: rgba(200,150,42,0.06);
    color: rgba(200,150,42,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.footer__social svg { width: 16px; height: 16px; }
.footer__social:hover {
    background: rgba(200,150,42,0.18);
    border-color: rgba(200,150,42,0.6);
    color: #f0c45a;
    transform: translateY(-3px);
}
.footer__col-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c8962a;
    margin-bottom: 20px;
}
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a {
    font-size: 0.9rem;
    color: rgba(242,237,226,0.55);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s, padding-left 0.2s;
}
.footer__nav a:hover { color: #fdf9f2; padding-left: 6px; }
.footer__contact { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.footer__contact li { display: flex; align-items: center; gap: 10px; }
.footer__contact svg { width: 15px; height: 15px; flex-shrink: 0; color: #c8962a; opacity: 0.8; }
.footer__contact a {
    font-size: 0.88rem;
    color: rgba(242,237,226,0.55);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
}
.footer__contact a:hover { color: #fdf9f2; }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(242,237,226,0.28); font-weight: 300; }

@media (max-width: 768px) {
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 24px 36px; }
    .footer__brand { grid-column: 1 / -1; }
    .footer__bottom { padding: 20px 24px; }
}
@media (max-width: 480px) {
    .footer__inner { grid-template-columns: 1fr; }
}

/* ════════════════════════════════
    RESPONSIVE
════════════════════════════════ */
@media (max-width: 768px) {
    .price-section, .features-section, .process-section, .faq-section, .cta-section { padding: 60px 24px; }
    .cta-box { padding: 40px 28px; }
    .features-section { max-width: 100%; }
}
@media (max-width: 480px) {
    .price-section, .features-section, .process-section, .faq-section, .cta-section { padding: 48px 16px; }
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    text-align: left;
}

.contact-form__row {
    display: flex;
    gap: 16px;
}

.contact-form__field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form__field input,
.contact-form__field textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,150,42,0.25);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fdf9f2;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    resize: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
    box-sizing: border-box;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: rgba(253,249,242,0.3);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: rgba(200,150,42,0.6);
    box-shadow: 0 0 0 3px rgba(200,150,42,0.08);
}

.contact-form__status {
    text-align: center;
    font-size: 0.88rem;
    font-weight: 300;
    margin: 0;
    min-height: 20px;
}

.contact-form__status.success { color: #4caf82; }
.contact-form__status.error   { color: #e05555; }

@media (max-width: 480px) {
    .contact-form__row { flex-direction: column; }
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,150,42,0.25);
    border-radius: 12px;
    padding: 14px 40px 14px 18px;
    color: #fdf9f2;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.select-wrapper select:focus {
    border-color: rgba(200,150,42,0.6);
    box-shadow: 0 0 0 3px rgba(200,150,42,0.08);
    background: rgba(255,255,255,0.07);
}

.select-wrapper select:hover {
    border-color: rgba(200,150,42,0.45);
    background: rgba(255,255,255,0.06);
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #c8962a;
    pointer-events: none;
    transition: transform 0.25s;
}

.select-wrapper select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.select-wrapper select option {
    background: #162040;
    color: #fdf9f2;
    padding: 10px;
}

.contact-form__divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 20px;
    color: rgba(253,249,242,0.2);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form__divider::before,
.contact-form__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,150,42,0.2), transparent);
}

.contact-form__direct-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(253,249,242,0.45);
    font-size: 0.88rem;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.25s;
}

.contact-form__direct-email svg {
    width: 16px;
    height: 16px;
    color: #c8962a;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.contact-form__direct-email:hover {
    color: #fdf9f2;
}

.contact-form__direct-email:hover svg {
    transform: translateY(-2px);
}