@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #D4AF37; /* Gold */
    --primary-hover: #b5952f;
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --text-light: #F5F5F5;
    --text-muted: #AAAAAA;
    --border-color: #333333;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    background-color: #000000;
    border-bottom: 2px solid var(--primary-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

/* Main Container */
.main-container {
    flex: 1;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Corporate Card */
.corporate-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 1000px;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: 0.5px;
}

.page-subtitle {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

/* Announcements */
.announcement-ticker {
    background: #2a2a2a;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.announcement-badge {
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.announcement-content {
    padding: 0 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Form Styles */
.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-light);
}

.form-control {
    padding: 0.9rem 1.2rem;
    border-radius: 6px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Captcha styling */
.captcha-group {
    grid-column: 1 / -1;
    background: #111;
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.captcha-label {
    color: var(--primary-color) !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.captcha {
    transform: scale(1.4);
    transform-origin: center;
    border: 1px solid #444;
    border-radius: 4px;
}

.captcha-wrapper input {
    padding: 0.9rem;
    font-size: 1.3rem;
    border: 2px solid var(--primary-color);
    background: #222;
    color: #fff;
    border-radius: 6px;
    width: 160px;
    text-align: center;
}

.btn-refresh {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-refresh:hover {
    background: #333;
    border-color: #555;
}

.captcha-hint {
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

/* Actions */
.form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-submit {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Results */
.results-header {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
}

.results-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.results-header p {
    color: var(--text-muted);
}

.results-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.result-card {
    background: #1A1A1A;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F3E5AB);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-color: #555;
}

.service-title {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ccc;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.info-icon {
    color: var(--primary-color);
    margin-top: 0.2rem;
    width: 18px;
}

/* Buttons */
.card-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
}
.btn-directions {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.95rem;
}
.btn-directions:hover {
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    max-width: 900px;
    margin: 4rem auto 2rem;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.faq-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}
.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.faq-question {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.faq-question i {
    color: var(--primary-color);
}
.faq-answer {
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 2rem;
}

/* Support Widget */
.support-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.support-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 50px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}
.support-btn:hover {
    transform: translateY(-5px);
}
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}
.phone-btn {
    background: linear-gradient(135deg, #D4AF37, #B5952F);
}
.support-btn i {
    font-size: 1.8rem;
}
.support-text {
    font-size: 1rem;
    line-height: 1.3;
}

/* Marquee */
.marquee-container {
    width: 100%;
    background: #000;
    color: var(--primary-color);
    padding: 10px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    font-weight: 500;
    letter-spacing: 1px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: 12px;
    color: var(--text-muted);
}
.no-results i {
    font-size: 3rem;
    color: #555;
    margin-bottom: 1.5rem;
}