/* Variables */
:root {
    --primary-color: #5CDFE5;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 6px 25px rgba(0, 0, 0, 0.12);
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 60px;
    --spacing-xl: 100px;
    --container-width: 1200px;
    --border-radius: 12px;
}

/* Global Font Settings */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

p, span, a, li {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
}

/* Common Layout */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Common Section Styles */
.section-title-group {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 20px auto;
    opacity: 0;
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Contact Form 7 Select Dropdown Styles */
/* Start of Selection */
.wpcf7-form-control-wrap .wpcf7-select {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    background-color: var(--white);
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7-form-control-wrap .wpcf7-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    outline: none;
}
/* End of Selection */

/* Contact Form 7 Submit Button Styles */
/* Start of Selection */
.wpcf7-form-control.wpcf7-submit.has-spinner {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    background-color: darken(var(--primary-color), 10%);
    box-shadow: var(--shadow-sm);
}

.wpcf7-form-control.wpcf7-submit.has-spinner:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
/* End of Selection */

/* Responsive Design */
@media screen and (max-width: 768px) {
    .section-container {
        padding: 0 var(--spacing-sm);
    }
} 
