/* Contact Page Specific Styles */

/* Contact Page Layout */
.contact-page {
    background: #020202;
    min-height: 100vh;
    position: relative;
}

.contact-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(29, 78, 216, 0.005) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Contact Hero Section - Updated to match get-started styles */
.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-top: 65px;
    padding-bottom: 6rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 2, 2, 0.2) 0%, rgba(2, 2, 2, 0.1) 50%, rgba(2, 2, 2, 0.2) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(59, 130, 246, 0.01) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(59, 130, 246, 0.01) 25%, transparent 25%);
    background-size: 60px 60px;
    z-index: 1000;
    animation: pattern-move 20s linear infinite;
}

.hero-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(96, 165, 250, 0.02) 0%, transparent 50%);
    animation: pattern-glow 8s ease-in-out infinite alternate;
}

@keyframes pattern-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes pattern-glow {
    0% { opacity: 0.1; }
    100% { opacity: 0.4; }
}

.contact-hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

/* Remove old luxury badge styles - no longer needed */
.luxury-badge,
.badge-line,
.luxury-badge span {
    display: none;
}

/* Remove incorrect hover styles */
.luxury-badge span:hover {
    display: none;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.8s; }

@keyframes title-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero-title .highlight {
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #1d4ed8, #3b82f6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 200; /* More refined weight */
    position: relative;
    animation: gradient-shift 3s ease-in-out infinite; /* Animated gradient */
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -12px; /* Slightly lower */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px; /* Thicker line */
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #1d4ed8);
    border-radius: 2px;
    animation: line-expand 2s ease 1.2s forwards; /* Longer animation */
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3); /* Glowing effect */
}

@keyframes line-expand {
    to { width: 120px; } /* Wider line */
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: #d1d5db;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 48px; /* Fixed height to prevent changes */
    box-sizing: border-box;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.badge-icon i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Premium icon colors for hero badges - Changed to white */
.feature-badge:nth-child(1) .badge-icon i {
    color: #ffffff; /* Crown - White */
}

.feature-badge:nth-child(2) .badge-icon i {
    color: #ffffff; /* Gem - White */
}

.feature-badge:nth-child(3) .badge-icon i {
    color: #ffffff; /* Star - White */
}

.feature-badge:hover .badge-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-badge span {
    color: #ffffff;
    font-weight: 500;
}

/* Remove old hero CTA styles - no longer needed */
.hero-cta,
.luxury-button,
.button-line {
    display: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, #3b82f6, transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.scroll-indicator span {
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

/* Get in Touch Section - New Design */
.get-in-touch-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    padding: 8rem 0 0 0; /* Remove bottom padding to integrate gallery */
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.get-in-touch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.get-in-touch-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.get-in-touch-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.header-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    margin: 0 auto 2rem;
    position: relative;
}

.header-line::before,
.header-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    transform: translateY(-50%);
}

.header-line::before {
    left: -4px;
}

.header-line::after {
    right: -4px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 200;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    min-height: 300px;
}

.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform: translateY(0);
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
    min-height: 280px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-info-card:nth-child(1) { animation-delay: 0.1s; }
.contact-info-card:nth-child(2) { animation-delay: 0.2s; }
.contact-info-card:nth-child(3) { animation-delay: 0.3s; }

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(96, 165, 250, 0.01));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover::after {
    opacity: 1;
}

.contact-info-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.1);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 25px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.1);
}

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

.contact-info-card:hover .contact-icon::before {
    left: 100%;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

.contact-icon i {
    color: #ffffff;
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.contact-info-card h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.01em;
    position: relative;
}

.contact-info-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover h3::after {
    opacity: 1;
}

.contact-info-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.contact-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(96, 165, 250, 0.03));
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-info-card:hover .contact-detail::before {
    left: 100%;
}

.contact-info-card:hover .contact-detail {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.05));
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.detail-label {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Space Grotesk', sans-serif;
}

.detail-value {
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

/* Contact Form Section - Enhanced */
.contact-form-section {
    background: #000000;
    padding: 6rem 0;
    position: relative;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.form-header p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    font-family: 'Montserrat', 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.contact-form {
    background: #111111;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #333333;
}

/* Inquiry Type Selection */
.inquiry-type-group {
    margin-bottom: 2.5rem;
}

.inquiry-type-group label {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
}

/* Premium Select Dropdown - Matching Get Started Form Style */
.premium-select-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.premium-select {
    width: 100%;
    padding: 1.3rem 1.8rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #ffffff;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 18px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 12px -1px rgba(0, 0, 0, 0.1),
        0 3px 6px -1px rgba(0, 0, 0, 0.06);
}

.premium-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #222222;
    transform: translateY(-2px);
}

.premium-select:hover {
    border-color: #3b82f6;
    background: #222222;
    transform: translateY(-1px);
}

/* Premium Select Options - Clean and Simple */
.premium-select option {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    background: #ffffff;
    color: #1e293b;
    border: none;
}

/* Clean select-arrow styles */
.select-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-arrow i {
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.premium-select:focus + .select-arrow i {
    transform: rotate(180deg);
    color: #3b82f6;
}



.select-arrow i {
    color: #3b82f6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.premium-select:focus + .select-arrow i {
    transform: rotate(180deg);
    color: #1d4ed8;
}




.form-group .premium-select option::before,


/* Hide any remaining icon elements */
.form-group .premium-select option i,
.form-group .premium-select option .fas,
.form-group .premium-select option .fa,
.premium-select option i,
.premium-select option .fas,
.premium-select option .fa {
    display: none !important;
}

/* Additional fixes for dropdown visibility */
.form-group .premium-select,
.premium-select {
    z-index: 100 !important;
    position: relative !important;
}

/* Ensure dropdown options are fully interactive */
.form-group .premium-select:focus,
.premium-select:focus {
    outline: none !important;
    border-color: #3b82f6 !important;
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.15),
        0 12px 30px rgba(59, 130, 246, 0.2) !important;
    transform: translateY(-2px) !important;
}

.form-group .premium-select:hover,
.premium-select:hover {
    border-color: rgba(59, 130, 246, 0.35) !important;
    box-shadow: 
        0 10px 25px rgba(59, 130, 246, 0.15),
        0 6px 12px -1px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-1px) !important;
}

/* Fix for dropdown options visibility and interaction */
.form-group .premium-select option:hover,
.premium-select option:hover {
    background: #e5e7eb !important;
    color: #1f2937 !important;
}

.form-group .premium-select option:checked,
.premium-select option:checked {
    background: #3b82f6 !important;
    color: #ffffff !important;
}

/* Additional fixes for dropdown functionality */
.form-group .premium-select,
.premium-select {
    /* Ensure dropdown is above other elements */
    z-index: 9999 !important;
}

/* Force dropdown options to be visible and interactive */
.form-group .premium-select option,
.premium-select option {
    /* Override any conflicting styles */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    user-select: auto !important;
    /* Ensure proper background and text colors */
    background-color: #ffffff !important;
    color: #1e293b !important;
}

/* Ensure the dropdown container is properly positioned */
.form-group .premium-select-wrapper {
    position: relative !important;
    z-index: 9999 !important;
}

/* Fix for optgroup styling */
.form-group .premium-select optgroup,
.premium-select optgroup {
    font-weight: 600 !important;
    color: #3b82f6 !important;
    background: #f8fafc !important;
    padding: 0.5rem 0 !important;
    /* Ensure optgroup is visible */
    display: block !important;
    visibility: visible !important;
}

.form-group .premium-select optgroup option,
.premium-select optgroup option {
    font-weight: 400 !important;
    color: #374151 !important;
    padding-left: 2rem !important;
    cursor: pointer !important;
    /* Ensure optgroup options are visible */
    background-color: #ffffff !important;
    display: block !important;
    visibility: visible !important;
}



.select-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10000 !important;
}

/* Ensure the select dropdown is properly positioned and visible */
.form-group .premium-select-wrapper {
    position: relative !important;
    z-index: 9999 !important;
    /* Ensure the wrapper doesn't clip the dropdown */
    overflow: visible !important;
}

/* Force the select element to be above other elements */
.form-group .premium-select,
.premium-select {
    position: relative !important;
    z-index: 9999 !important;
    /* Ensure the select is clickable */
    pointer-events: auto !important;
    /* Remove any potential clipping */
    overflow: visible !important;
}



.select-arrow i {
    color: #3b82f6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.premium-select:focus + .select-arrow i {
    transform: rotate(180deg);
    color: #1d4ed8;
}





/* Company Information Group */
.company-info-group {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Form Styling */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #333333;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: #ffffff;
}

/* General select styles - but premium-select will override these */
.form-group select:not(.premium-select) {
    width: 100%;
    padding: 1rem;
    border: 2px solid #333333;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #222222;
}

/* General select focus styles - but premium-select will override these */
.form-group select:not(.premium-select):focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #222222;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: #999999;
}

/* General select option styles - but premium-select will override these */
.form-group select:not(.premium-select) option {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    background: #1a1a1a;
    color: #ffffff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #d1d5db;
    line-height: 1.5;
    font-size: 1rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    border: none;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.submit-button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Submit button icons and text - Make them visible */
.submit-button i,
.submit-button .fas,
.submit-button .fa,
.submit-button .fa-paper-plane {
    display: inline-block !important;
    margin-left: 0.5rem;
}

.submit-button span {
    display: inline-block !important;
}

/* Additional Contact Methods Section */
.additional-contact-section {
    background: #000000;
    padding: 6rem 0;
    position: relative;
}

.additional-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform: translateY(0);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.contact-method-card:nth-child(1) { animation-delay: 0.1s; }
.contact-method-card:nth-child(2) { animation-delay: 0.2s; }
.contact-method-card:nth-child(3) { animation-delay: 0.3s; }
.contact-method-card:nth-child(4) { animation-delay: 0.4s; }

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.contact-method-card:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.1);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-method-card:hover .method-icon::before {
    left: 100%;
}

.contact-method-card:hover .method-icon {
    transform: scale(1.05);
}

.method-icon i {
    color: #000000;
    font-size: 1.8rem;
}

.contact-method-card h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.01em;
}

.contact-method-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 300;
}

.method-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    color: #3b82f6;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid #3b82f6;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    overflow: hidden;
}

.method-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #3b82f6;
    transition: left 0.4s ease;
    z-index: -1;
}

.method-cta:hover {
    color: #000000;
    transform: translateY(-2px);
}

.method-cta:hover::before {
    left: 0;
}

.cta-line {
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s ease;
}

.method-cta:hover .cta-line {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-hero-stats {
        justify-content: center;
    }
    
    .contact-info-grid,
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .inquiry-type-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .contact-hero {
        height: auto;
        padding: 8rem 0 4rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero {
        padding-top: 100px;
    }
    
    .luxury-badge {
        margin-top: 2rem;
    }
    
    .contact-hero-content {
        margin-top: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .get-in-touch-section,
    .contact-form-section,
    .additional-contact-section {
        padding: 4rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-container,
    .get-in-touch-container,
    .contact-form-container,
    .additional-contact-container {
        padding: 0 1.5rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .inquiry-type-options {
        grid-template-columns: 1fr;
    }
    
    .option-content {
        padding: 1rem;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Enhanced hover effects */
.contact-info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
}

.contact-method-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
}

.feature-badge:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.luxury-button:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Enhanced form animations */
.form-group {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }
.form-group:nth-child(8) { animation-delay: 0.8s; }

/* Floating Action Button */
.floating-action-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.fab-phone,
.fab-form {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    transform: scale(0);
    opacity: 0;
}

.floating-action-button:hover .fab-phone,
.floating-action-button:hover .fab-form {
    transform: scale(1);
    opacity: 1;
}

.fab-phone:hover,
.fab-form:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.fab-toggle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.fab-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.5);
}

.floating-action-button:hover .fab-toggle {
    transform: rotate(45deg);
}

@media (max-width: 1400px) {
    .get-in-touch-container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .get-in-touch-container {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .get-in-touch-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .get-in-touch-container,
    .contact-form-container,
    .additional-contact-container {
        padding: 0 1.5rem;
    }
    
    .floating-action-button {
        bottom: 1rem;
        right: 1rem;
    }
    
    .fab-phone,
    .fab-form {
        width: 50px;
        height: 50px;
    }
    
    .fab-toggle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Gallery Section - Now integrated within Get in Touch */
.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 4rem; /* Add spacing from contact cards */
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 0;
    height: 500px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.gallery-item.main-gallery {
    grid-row: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1.5rem;
    }
    
    .gallery-item.main-gallery {
        grid-row: auto;
    }
}

/* Why Choose Elevanty Section */
.why-choose-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform: translateY(0);
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(96, 165, 250, 0.01));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 25px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.1);
}

.feature-icon i {
    color: #ffffff;
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 15px 35px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Responsive Why Choose Section */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
    }
    
    .why-choose-section {
        padding: 4rem 0;
    }
}

/* Responsive adjustments for hero features */
@media (max-width: 1200px) {
    .hero-features {
        gap: 2rem;
    }
    
    .feature-badge {
        min-width: 160px;
        height: 48px !important; /* Fixed height */
        padding: 0.75rem 1.5rem !important; /* Fixed padding */
    }
}

@media (max-width: 768px) {
    .hero-features {
        flex-wrap: wrap; /* Allow wrapping on mobile */
        gap: 1.5rem;
    }
    
    .feature-badge {
        min-width: 140px;
        height: 48px !important; /* Fixed height */
        padding: 0.75rem 1.5rem !important; /* Fixed padding */
    }
}

@media (max-width: 480px) {
    .feature-badge {
        height: 48px !important; /* Fixed height */
        padding: 0.75rem 1.5rem !important; /* Fixed padding */
        min-width: 120px;
    }
}
