:root {
    --gold-light: #f7e9c8;
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --gold-accent: #fff9e6;
    --black-light: #2a2a2a;
    --black: #1a1a1a;
    --gray-dark: #3a3a3a;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black-light);
    background-color: var(--white);
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 2rem auto 3rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-light) 100%);
    color: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--gray-dark);
    max-width: 90%;
}

.flex {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--black);
    color: var(--gold-light);
    border: 1px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gold-light);
    width: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gold-light);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.info-text {
    width: 100%;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.info-text p {
    color: var(--gray);
    line-height: 1.5;
}

/* Contact Options */
.contact-options {
    background: var(--gold-accent);
}

.options-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.option-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1rem 0.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gold-light);
    width: 100%;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.4rem;
    color: var(--white);
}

.option-card h3 {
    font-size: 1.4rem;
    /* margin-bottom: 1rem; */
    color: var(--black);
}

.option-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.option-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.option-link:hover {
    color: var(--gold);
    gap: 0.8rem;
}

/* Contact Form Section */
.contact-main {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.form-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gold-light);
    width: 100%;
    position: relative;
    overflow: hidden;
    height: auto;
    max-height: 800px;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
}

.form-header {
    margin-bottom: 0.8rem;
    width: 100%;
    text-align: center;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    color: var(--black);
    position: relative;
    display: inline-block;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

.form-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    margin-bottom: 0.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 0.2rem;
    width: 100%;
}

.form-label {
    display: block;
    /* margin-bottom: 0.1rem; */
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
    transition: var(--transition);
}

.form-label .required {
    color: #e74c3c;
    margin-left: 2px;
}

.form-input-wrapper {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 1.1rem 1rem 1.1rem 3rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--black);
}

.form-input:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: var(--gold-accent);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    transition: var(--transition);
    z-index: 1;
    font-size: 1.1rem;
}

.form-input:focus+.form-icon {
    color: var(--gold);
}

/* Textarea specific styles */
.form-group.textarea-group .form-input {
    min-height: 140px;
    resize: vertical;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.form-group.textarea-group .form-icon {
    top: 1.5rem;
    transform: none;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gold-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 2.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--gray-light);
}

.btn-secondary:hover {
    background: var(--gold-light);
    color: var(--gold-dark);
    border-color: var(--gold);
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
    margin-top: 1.5rem;
}

.form-note a {
    color: var(--gold-dark);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Success State */
.form-group.success .form-input {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.form-group.success .form-icon {
    color: #10b981;
}

/* Error State */
.form-group.error .form-input {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.form-group.error .form-icon {
    color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Contact Info Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gold-light);
    width: 100%;
}

.info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.4rem;
    position: relative;
    color: var(--black);
}

.info-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

.contact-details {
    margin-bottom: 0.8rem;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gold-light);
    width: 100%;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 30px;
    height: 30px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.contact-text {
    width: 100%;
}

.contact-text h4 {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    color: var(--black);
}

.contact-text p {
    color: var(--gray);
}

.working-hours h3 {
    font-size: 0.8rem;
    margin: 1rem 0 1rem;
    padding-bottom: 0.3rem;
    position: relative;
    color: var(--black);
}

.working-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.working-hours ul {
    list-style: none;
    width: 100%;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--gold-light);
    width: 100%;
}

.working-hours li:last-child {
    border-bottom: none;
}

.working-hours li span:first-child {
    font-weight: 500;
}

.working-hours li span:last-child {
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-container {
        order: 2;
    }

    .contact-sidebar {
        order: 1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1 1 300px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-sidebar {
        flex-direction: column;
    }

    .info-card {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .flex {
        flex-direction: column;
        align-items: center;
    }

    .option-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }

    .hero {
        padding: 80px 0;
    }

    .form-container {
        padding: 1.5rem;
    }

    .form-header h2 {
        font-size: 1.6rem;
    }

    .form-input {
        padding: 1rem 1rem 1rem 2.8rem;
    }

    .form-icon {
        left: 0.8rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .option-card {
        padding: 1.5rem;
    }

    .info-box {
        padding: 1.5rem;
    }
}

/* Animation for form submission */
@keyframes formSubmit {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

.form-submitting {
    animation: formSubmit 0.3s ease;
}

/* Focus states for accessibility */
.form-input:focus,
.btn:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}