/* Professional Styling for Moves For Less */

/* Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.wp-block-cover {
    min-height: 600px !important;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
}

.wp-block-cover h1 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.wp-block-cover p {
    font-size: 1.5rem !important;
    margin-bottom: 2rem !important;
}

/* Contact Form Styling */
.wpcf7-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 500px;
    margin: 2rem auto;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e3a8a;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #3b82f6;
}

.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Section Spacing */
.wp-block-spacer {
    margin: 3rem 0;
}

/* Headings */
h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1e3a8a !important;
    margin-bottom: 1.5rem !important;
}

h3 {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #1e40af !important;
    margin-bottom: 1rem !important;
}

h4 {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #1e3a8a !important;
}

/* Columns and Service Cards */
.wp-block-columns {
    margin-bottom: 3rem;
}

.wp-block-column {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0 1rem;
}

.wp-block-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Buttons */
.wp-block-button__link {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

ul li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
    margin-right: 8px;
}

/* Phone Number Styling */
a[href^="tel:"] {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
    transition: color 0.3s;
}

a[href^="tel:"]:hover {
    color: #3b82f6;
}

/* Navigation Menu */
.main-navigation a {
    font-weight: 600;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
    .wp-block-cover h1 {
        font-size: 2.5rem !important;
    }
    
    .wp-block-cover p {
        font-size: 1.2rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .wp-block-column {
        margin: 1rem 0;
    }
    
    .wpcf7-form {
        padding: 1.5rem;
    }
}

/* Footer */
footer {
    background: #1e3a8a;
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

footer a {
    color: #93c5fd;
}

footer a:hover {
    color: white;
}

/* Enhanced Quote Form - 1800packrat.com Style */

/* Form Container */
.wpcf7-form {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 2.5rem !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* Form Title */
.wpcf7-form::before {
    content: "GET YOUR FREE QUOTE";
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

/* Form Fields - Two Column Layout */
.wpcf7-form p {
    display: inline-block;
    width: 48%;
    margin-right: 4%;
    vertical-align: top;
}

.wpcf7-form p:nth-child(even) {
    margin-right: 0;
}

/* Full width for select and submit */
.wpcf7-form p:has(select),
.wpcf7-form p:has(input[type="submit"]) {
    width: 100%;
    margin-right: 0;
}

/* Label Styling */
.wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #1e3a8a;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input Fields */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 2px solid #d1d5db !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s !important;
    background: white !important;
    font-family: inherit !important;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus {
    outline: none !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

/* Placeholder Styling */
.wpcf7-form input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border: none !important;
    padding: 18px 40px !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    width: 100% !important;
    margin-top: 1rem !important;
    transition: all 0.3s !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5) !important;
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(-1px) !important;
}

/* Responsive - Stack fields on mobile */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 2rem 1.5rem !important;
    }
    
    .wpcf7-form p {
        width: 100% !important;
        margin-right: 0 !important;
    }
    
    .wpcf7-form::before {
        font-size: 1.5rem;
    }
}

/* Form validation messages */
.wpcf7-not-valid-tip {
    color: #ef4444 !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem !important;
}

.wpcf7-response-output {
    margin: 1rem 0 0 0 !important;
    padding: 1rem !important;
    border-radius: 8px !important;
}

.wpcf7-mail-sent-ok {
    background: #d1fae5 !important;
    color: #065f46 !important;
    border: 2px solid #10b981 !important;
}

.wpcf7-validation-errors {
    background: #fee2e2 !important;
    color: #991b1b !important;
    border: 2px solid #ef4444 !important;
}

