/* ============================================
   Contact Page Styles - NovaDevz
   ============================================ */

/* Hero Section */
.contact-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(180deg, #F0F4FF 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0A0E27;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.contact-hero-description {
    font-size: 1.15rem;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Decorative Hero Shapes */
.contact-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.contact-shape-1 {
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    top: -120px;
    right: -80px;
    animation: contactFloat 6s ease-in-out infinite;
}

.contact-shape-2 {
    width: 250px;
    height: 250px;
    background: #458BC9;
    bottom: -80px;
    left: -60px;
    animation: contactFloat 8s ease-in-out infinite reverse;
}

.contact-shape-3 {
    width: 180px;
    height: 180px;
    background: var(--primary-color);
    top: 40%;
    left: 5%;
    animation: contactFloat 7s ease-in-out infinite;
    animation-delay: 1s;
}

.contact-shape-4 {
    width: 120px;
    height: 120px;
    background: #458BC9;
    top: 20%;
    right: 10%;
    animation: contactFloat 5s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes contactFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

/* ============================================
   Contact Info Cards Section
   ============================================ */
.contact-info-section {
    padding: 0 0 1.5rem;
    background: #ffffff;
    position: relative;
    margin-top: -2rem;
    z-index: 3;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 20px;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid rgba(45, 91, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #458BC9);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(45, 91, 255, 0.12);
    border-color: rgba(45, 91, 255, 0.15);
}

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

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(45, 91, 255, 0.1) 0%, rgba(69, 139, 201, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.contact-card-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, #458BC9 100%);
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card:hover .contact-card-icon i {
    color: #ffffff;
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0A0E27;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-card-detail {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
}

.contact-card-detail a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-detail a:hover {
    color: var(--primary-color);
}

/* ============================================
   Main Contact Section (Form + Map)
   ============================================ */
.contact-main-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #F9FAFB 0%, #F0F4FF 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-main-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 91, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-main-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(69, 139, 201, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ============================================
   Contact Form Card
   ============================================ */
.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(45, 91, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #458BC9, var(--primary-color));
    background-size: 200% 100%;
    animation: shimmerGradient 3s linear infinite;
}

@keyframes shimmerGradient {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header .section-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(45, 91, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.form-header h2 {
    font-size: 2rem;
    color: #0A0E27;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.form-header p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
}

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

/* Form Group */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0A0E27;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.form-group label .required {
    color: #EF4444;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.2rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    color: #0A0E27;
    background: #FAFBFC;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #C7D2FE;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(45, 91, 255, 0.1);
}

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

/* Select dropdown */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232D5BFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* ============================================
   Phone Input with Country Code
   ============================================ */
.phone-input-wrapper {
    display: flex;
    gap: 0;
    position: relative;
}

.country-code-select {
    position: relative;
    flex-shrink: 0;
}

.country-code-selected {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 0.8rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px 0 0 12px;
    border-right: none;
    background: #FAFBFC;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 110px;
    user-select: none;
}

.country-code-selected:hover {
    background: #ffffff;
    border-color: #C7D2FE;
}

.country-code-select.open .country-code-selected {
    border-color: var(--primary-color);
    background: #ffffff;
}

.country-flag {
    font-size: 1.25rem;
    line-height: 1;
}

.country-dial {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0A0E27;
    font-family: 'Montserrat', sans-serif;
}

.country-arrow {
    font-size: 0.65rem;
    color: #6B7280;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.country-code-select.open .country-arrow {
    transform: rotate(180deg);
}

.phone-input-wrapper input[type="tel"] {
    flex: 1;
    border-radius: 0 12px 12px 0;
    border-left: none;
    min-width: 0;
}

.phone-input-wrapper input[type="tel"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 91, 255, 0.1);
}

.form-group.error .phone-input-wrapper input[type="tel"],
.form-group.error .country-code-selected {
    border-color: #EF4444;
    background: #FEF2F2;
}

.form-group.success .phone-input-wrapper input[type="tel"],
.form-group.success .country-code-selected {
    border-color: #10B981;
    background: #F0FDF4;
}

/* Country Code Dropdown */
.country-code-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 300px;
    max-height: 320px;
    background: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 100;
    overflow: hidden;
    animation: dropdownSlide 0.25s ease;
}

.country-code-select.open .country-code-dropdown {
    display: block;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-search {
    width: 100%;
    padding: 0.85rem 1rem;
    border: none;
    border-bottom: 1px solid #E5E7EB;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    color: #0A0E27;
    outline: none;
    background: #FAFBFC;
}

.country-search::placeholder {
    color: #9CA3AF;
}

.country-search:focus {
    background: #ffffff;
}

.country-list {
    max-height: 248px;
    overflow-y: auto;
    padding: 0.35rem 0;
}

.country-list::-webkit-scrollbar {
    width: 6px;
}

.country-list::-webkit-scrollbar-track {
    background: transparent;
}

.country-list::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 3px;
}

.country-list::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: background 0.15s ease;
    font-family: 'Montserrat', sans-serif;
}

.country-option:hover {
    background: rgba(45, 91, 255, 0.06);
}

.country-option.active {
    background: rgba(45, 91, 255, 0.1);
}

.country-option .flag {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.country-option .name {
    font-size: 0.88rem;
    color: #0A0E27;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.country-option .dial {
    font-size: 0.85rem;
    color: #6B7280;
    font-weight: 600;
    flex-shrink: 0;
}

/* ============================================
   Services Checkbox Grid
   ============================================ */
.services-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    background: #FAFBFC;
    transition: all 0.25s ease;
    user-select: none;
}

.checkbox-item:hover {
    border-color: #C7D2FE;
    background: #ffffff;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
    position: relative;
}

.checkbox-custom::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
    position: absolute;
    top: 1px;
    left: 5px;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-item input[type="checkbox"]:checked ~ .checkbox-label {
    color: var(--primary-color);
    font-weight: 600;
}

.checkbox-item:has(input:checked) {
    border-color: rgba(45, 91, 255, 0.3);
    background: rgba(45, 91, 255, 0.04);
}

.checkbox-label {
    font-size: 0.88rem;
    color: #374151;
    font-weight: 500;
    transition: all 0.25s ease;
    line-height: 1.3;
}

.form-group.error .services-checkbox-grid {
    border: 2px solid #EF4444;
    border-radius: 12px;
    padding: 0.5rem;
    background: #FEF2F2;
}

.form-group.success .services-checkbox-grid {
    border: 2px solid #10B981;
    border-radius: 12px;
    padding: 0.5rem;
    background: #F0FDF4;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #EF4444;
    background: #FEF2F2;
}

.form-group.error input:focus,
.form-group.error select:focus,
.form-group.error textarea:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #10B981;
    background: #F0FDF4;
}

.form-group.success input:focus,
.form-group.success select:focus,
.form-group.success textarea:focus {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.error-message {
    display: none;
    font-size: 0.8rem;
    color: #EF4444;
    margin-top: 0.4rem;
    padding-left: 0.2rem;
    align-items: center;
    gap: 0.3rem;
}

.error-message i {
    font-size: 0.75rem;
}

.form-group.error .error-message {
    display: flex;
}

/* Character Counter */
.char-counter {
    font-size: 0.75rem;
    color: #9CA3AF;
    text-align: right;
    margin-top: 0.3rem;
    transition: color 0.3s ease;
}

.char-counter.warning {
    color: #F59E0B;
}

.char-counter.danger {
    color: #EF4444;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #458BC9 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

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

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 91, 255, 0.3);
}

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

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

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* Loading spinner */
.btn-submit .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.btn-submit.loading .spinner {
    display: inline-block;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading i {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Right Side: Map & Social
   ============================================ */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Map Card */
.contact-map-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(45, 91, 255, 0.06);
    overflow: hidden;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
}

.map-header i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.map-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0A0E27;
    font-family: 'Montserrat', sans-serif;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 280px;
    border: none;
    border-radius: 16px;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* Social Connect Card */
.contact-social-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #458BC9 100%);
    border-radius: 24px;
    padding: 2.5rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-social-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.contact-social-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.social-card-content {
    position: relative;
    z-index: 2;
}

.social-card-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
}

.social-card-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-icons-row {
    display: flex;
    gap: 1rem;
}

.social-icon-link {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
}

.social-icon-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.05);
}

.social-icon-link:hover i {
    transform: scale(1.1);
}

/* Working Hours Card */
.contact-hours-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(45, 91, 255, 0.06);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hours-header i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.hours-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0A0E27;
    font-family: 'Montserrat', sans-serif;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0A0E27;
}

.hours-item .time {
    font-size: 0.9rem;
    color: #6B7280;
}

.hours-item .time.closed {
    color: #EF4444;
    font-weight: 600;
}

.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hours-status.open {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.hours-status.closed {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.hours-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   FAQ Section
   ============================================ */
.contact-faq-section {
    padding: 5rem 0 6rem;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.faq-header .section-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(45, 91, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #0A0E27;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #FAFBFC;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(45, 91, 255, 0.2);
}

.faq-item.active {
    background: #ffffff;
    border-color: rgba(45, 91, 255, 0.2);
    box-shadow: 0 8px 30px rgba(45, 91, 255, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    gap: 1rem;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0A0E27;
    line-height: 1.5;
}

.faq-item.active .faq-question h4 {
    color: var(--primary-color);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(45, 91, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-toggle i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--primary-color);
}

.faq-item.active .faq-toggle i {
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer-content p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.8;
}

/* ============================================
   Success Message / Toast
   ============================================ */
.form-success-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.form-success-overlay.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-success-modal {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    font-size: 2.5rem;
    color: #10B981;
}

.form-success-modal h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0A0E27;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
}

.form-success-modal p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-close-modal {
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #458BC9 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 91, 255, 0.3);
}

/* ============================================
   CTA Section
   ============================================ */
.contact-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #458BC9 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.contact-cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons-row {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .contact-hero-title {
        font-size: 3rem;
    }
    .form-cont{
        padding: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 0 3rem;
    }

    .contact-hero-title {
        font-size: 2.2rem;
    }

    .contact-hero-description {
        font-size: 1rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .contact-main-section {
        padding: 3rem 0 4rem;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .services-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .country-code-dropdown {
        width: 280px;
    }

    .form-header h2 {
        font-size: 1.6rem;
    }

    .contact-cta-content h2 {
        font-size: 2.2rem;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .social-icons-row {
        justify-content: flex-start;
    }

    .cta-buttons-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-white,
    .btn-cta-outline {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 3rem 0 2rem;
    }

    .contact-hero-title {
        font-size: 1.8rem;
    }

    .contact-hero-description {
        font-size: 0.95rem;
    }

    .contact-form-card {
        padding: 1.5rem 0.8rem;
    }

    .country-code-selected {
        min-width: 95px;
        padding: 0.85rem 0.6rem;
    }

    .country-code-dropdown {
        width: 250px;
    }

    .country-dial {
        font-size: 0.82rem;
    }

    .form-header h2 {
        font-size: 1.4rem;
    }

    .contact-card-icon {
        width: 65px;
        height: 65px;
    }

    .contact-card-icon i {
        font-size: 1.5rem;
    }

    .contact-card-title {
        font-size: 1.1rem;
    }

    .contact-cta-content h2 {
        font-size: 1.8rem;
    }

    .faq-header h2 {
        font-size: 1.6rem;
    }

    .faq-question h4 {
        font-size: 0.95rem;
    }

    .contact-social-card {
        padding: 2rem;
    }

    .contact-hours-card {
        padding: 2rem;
    }

    .success-modal {
        padding: 2rem;
    }
}
