* {
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ===== CONTACT HERO BANNER ===== */
.contact-hero {
    position: relative;
    height: 350px;
    background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1600') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.78);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero-title {
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInDown 0.7s ease forwards;
    animation-delay: 0.2s;
}

.contact-hero-line {
    width: 60px;
    height: 3px;
    background: #c8a951;
    margin: 0 auto 20px;
    transform: scaleX(0);
    transform-origin: center;
    animation: scaleXIn 0.6s ease forwards;
    animation-delay: 0.5s;
}

.contact-hero-breadcrumb {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
}

.contact-hero-breadcrumb-link {
    color: #c8a951;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-hero-breadcrumb-link:hover {
    color: #d4b95f;
}

.contact-hero-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
}

.contact-hero-breadcrumb-current {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #0a0a0a;
    padding: 100px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
}

/* ===== LEFT COLUMN — CONTACT INFO ===== */
.contact-info {
    flex: 0 0 40%;
    max-width: 40%;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-section.contact-visible .contact-info {
    opacity: 1;
    transform: translateX(0);
}

.contact-info-label {
    color: #c8a951;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
}

.contact-info-heading {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0 10px;
}

.contact-info-underline {
    width: 50px;
    height: 3px;
    background: #c8a951;
    margin-bottom: 25px;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* ===== CONTACT CARDS ===== */
.contact-card {
    background: #111111;
    border: 1px solid rgba(200, 169, 81, 0.15);
    border-radius: 10px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-card:hover {
    border-color: #c8a951;
    background: rgba(200, 169, 81, 0.05);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(200, 169, 81, 0.1);
    border: 1px solid #c8a951;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon i {
    color: #c8a951;
    font-size: 18px;
}

.contact-card-details {
    display: flex;
    flex-direction: column;
}

.contact-card-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card-value {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    margin-top: 4px;
}

/* ===== RIGHT COLUMN — CONTACT FORM ===== */
.contact-form-wrapper {
    flex: 0 0 60%;
    max-width: 60%;
    background: #111111;
    border: 1px solid rgba(200, 169, 81, 0.15);
    border-radius: 12px;
    padding: 45px 40px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.contact-section.contact-visible .contact-form-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.contact-form-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 30px;
}

#contactForm {
    width: 100%;
}

/* ===== FORM FIELDS ===== */
.contact-form-row {
    display: flex;
    gap: 20px;
}

.contact-form-row .contact-form-group {
    flex: 1;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 13px 16px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #c8a951;
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.1);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form-group textarea {
    height: 140px;
    resize: vertical;
}

/* ===== SUBMIT BUTTON ===== */
.contact-form-submit {
    width: 100%;
    background: #c8a951;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 700;
    padding: 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    font-family: inherit;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-submit:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.35);
}

.contact-form-submit i {
    margin-right: 8px;
}

/* ===== FORM MESSAGES ===== */
#formSuccess {
    background: rgba(200,169,81,0.1);
    border: 1px solid #c8a951;
    color: #c8a951;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 15px;
}

#formError {
    background: rgba(255,0,0,0.08);
    border: 1px solid rgba(255,0,0,0.3);
    color: #ff6b6b;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 15px;
}

/* ===== MAP SECTION ===== */
.contact-map-section {
    width: 100%;
    background: #080808;
    border-top: 3px solid #c8a951;
    line-height: 0;
}

.contact-map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: grayscale(40%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-hero {
        height: 250px;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info,
    .contact-form-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-info-heading {
        font-size: 28px;
    }

    .contact-map-section iframe {
        height: 280px;
    }
}
html,
body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}