/* Added message styles */
.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease-out;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    --primary-color: #1B365D;  /* Classic navy blue */
    --accent-color: #34495e;   /* Sophisticated dark blue-grey */
    --bg-color: #f8f9fa;       /* Light background */
    --text-color: #2c3e50;     /* Dark blue text */
    --border-color: #d1d8e0;   /* Soft grey for borders */
    --hover-color: #2c5282;    /* Lighter navy for hover states */
    --light-accent: #e2e8f0;   /* Light blue-grey for subtle accents */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(135deg, #ffffff 0%, #e8ebf2 100%);
}

.page-wrapper {
    width: 100%;
    padding: 20px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.scissors-icon {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 20px;
    transform: rotate(-45deg);
}

h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--accent-color);
    font-size: 1.1em;
    font-weight: 300;
    margin-top: 15px;
}

.business-info {
    text-align: center;
    margin: 15px 0;
    padding: 15px;
    border-radius: 8px;
    background-color: var(--light-accent);
    display: inline-block;
}

.business-info p {
    margin: 8px 0;
    color: var(--primary-color);
    font-size: 0.95em;
}

.business-info i {
    margin-right: 8px;
    color: var(--accent-color);
}

.address, .email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.business-logo {
    display: block;
    margin: 0 auto 15px auto;
    max-width: 120px;
    height: auto;
}

.modern-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

label i {
    margin-right: 8px;
    color: var(--accent-color);
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
}

input:focus, textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.2);
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.decorative-elements {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.1;
}

.decorative-icon {
    font-size: 24px;
    margin-left: 15px;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .container {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    h1 {
        font-size: 2em;
    }

    .decorative-elements {
        display: none;
    }
}

/* Modern form animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeIn 0.6s ease-out;
}

/* Hover effects */
input:hover, textarea:hover {
    border-color: var(--accent-color);
}

.scissors-icon {
    transition: transform 0.3s ease;
}

.scissors-icon:hover {
    transform: rotate(-45deg) scale(1.1);
}