/* Contact Section Enhanced Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Calibri', sans-serif;
    line-height: 1.6;
    background: #1a1a1a;
    min-height: 200vh;
}

/* Demo spacer to show scroll effect */
.demo-spacer {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-align: center;
}

.contact-section {
    background: #2C2C2C;
    padding: 80px 40px 60px 40px;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Cormorant', serif;
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.contact-section.fade-in .contact-title {
    opacity: 1;
    transform: translateY(0);
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.contact-section.fade-in .contact-info {
    opacity: 1;
    transform: translateX(0);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-item:hover::before {
    left: 100%;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 5px;
    width: 30px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: #4CAF50;
}

.contact-item:hover .contact-icon {
    color: #45a049;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 12px rgba(76, 175, 80, 0.8);
}

.contact-text {
    font-family: 'Calibri', sans-serif;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-text {
    transform: translateX(5px);
}

.contact-text p {
    margin: 0;
    font-size: 1rem;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-text p {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.contact-form-container {
    flex: 1;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.contact-section.fade-in .contact-form-container {
    opacity: 1;
    transform: translateX(0);
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px 35px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049, #4CAF50);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.form-title {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Calibri', sans-serif;
    font-size: 1rem;
    background: #f8f8f8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
    outline: none;
    border-color: #4CAF50;
    background: white;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
    transform: scale(1.02);
}

.form-input:hover:not(:focus) {
    border-color: #bbb;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder {
    color: #999;
    transition: color 0.3s ease;
}

.form-input:focus::placeholder {
    color: #bbb;
}

/* Service Selector Styles */
.service-selector {
    position: relative;
}

.service-dropdown-btn {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Calibri', sans-serif;
    font-size: 1rem;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-dropdown-btn.has-selection {
    color: #333;
}

.service-dropdown-btn:focus,
.service-dropdown-btn.open {
    outline: none;
    border-color: #4CAF50;
    background: white;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
    transform: scale(1.02);
}

.service-dropdown-btn:hover:not(:focus):not(.open) {
    border-color: #bbb;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.service-dropdown-btn.open .dropdown-arrow {
    transform: rotate(180deg);
}

.service-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #4CAF50;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-options.open {
    max-height: 300px;
    overflow-y: auto;
}

.service-options::-webkit-scrollbar {
    width: 8px;
}

.service-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.service-options::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

.service-options::-webkit-scrollbar-thumb:hover {
    background: #45a049;
}

.service-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.service-option:last-child {
    border-bottom: none;
}

.service-option:hover {
    background: linear-gradient(90deg, #f8f9fa, #e8f5e8);
    color: #4CAF50;
    transform: translateX(8px);
    padding-left: 20px;
}

.service-option.selected {
    background: #4CAF50;
    color: white;
}

.form-submit {
    background: #4CAF50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Calibri', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.form-submit:hover {
    background: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:active {
    transform: translateY(-1px);
}

/* Mobile Responsiveness */
