        /* Contact Hero */
        .contact-hero {
            padding: 150px 0 30px;
            background: rgb(123 61 255 / 24%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        

        
        .contact-hero-container {
            position: relative;
            z-index: 1;
            width: 90%;
        }
        
        .contact-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark-color);
            font-weight: 800;
            letter-spacing: -1px;
        }
        
        .contact-hero p {
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: var(--gray-color);
            line-height: 1.7;
        }
        
        .scroll-indicator {
            margin-top: 60px;
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator i {
            font-size: 1.5rem;
            color: hsl(259, 100%, 62%);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        /* Contact Content */
        .contact-content {
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 18px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: hsl(259, 100%, 62%);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--gray-color);
            max-width: 600px;
            margin: 25px auto 0;
            font-size: 1.1rem;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 2.5fr;
            gap: 30px;
            align-items: start;
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }
        
        /* Contact Info */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 30px 20px;
            background: hsl(261, 100%, 93%);
            border-radius: 20px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        
        .contact-method:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: hsl(259, 100%, 62%);
            transform: scaleY(0);
            transition: transform 0.4s ease;
        }
        
        .contact-method:hover:before {
            transform: scaleY(1);
        }
        
        .contact-method:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: hsl(259, 100%, 62%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        
        .contact-details h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: var(--dark-color);
            font-weight: 700;
        }
        
        .contact-details p {
            color: var(--gray-color);
            margin-bottom: 8px;
            line-height: 1.6;
        }
        
        .contact-link {
            color: hsl(259, 100%, 62%);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            margin-top: 5px;
        }
        
        .contact-link i {
            margin-left: 6px;
            transition: transform 0.3s ease;
        }
        
        .contact-link:hover {
            color: hsl(259, 100%, 62%);
        }
        
        .contact-link:hover i {
            transform: translateX(4px);
        }
        
        /* Social Links */
        .contact-social {
            margin-top: 20px;
        }
        
        .social-title {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            font-weight: 600;
        }
        
        .social-links-1 {
            display: flex;
            gap: 12px;
        }
        
        .social-link-1 {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: var(--light-blue);
            border-radius: 14px;
            color: hsl(259, 100%, 62%);
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        
        .social-link-1:hover {
            background: hsl(259, 100%, 62%);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(58, 134, 255, 0.3);
        }
        
        /* Contact Form */
        .contact-form-container {
            background: #7b3dff;
            padding: 40px 40px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
        }

        
        .form-title {
            font-size: 2rem;
            margin-bottom: 12px;
            color: white;
            font-weight: 600;
            text-align: center;

        }
        
        .form-subtitle {
            color: white;
            margin-bottom: 35px;
            line-height: 1.6;
            text-align: center;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
        }
        
        .form-label {
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--dark-color);
            font-size: 0.95rem;
        }
        
        .form-control {
            padding: 16px 20px;
            border: 1px solid #e6e9f0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fcfdff;
        }
        
        .form-control:focus {
            outline: none;
            border-color: hsl(259, 100%, 62%);
            box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
            background: white;
        }
        

        textarea.form-control {
            min-height: 160px;
            resize: vertical;
        }
        
        .form-submit {
            margin-top: 15px;
            align-self: flex-start;
            background: white;
            color: #7b3dff;
            margin: auto;
        }
        


        /* PROJECT TYPE */
        #project_type {
            color: #7a7a7a; /* placeholder gray by default */
        }

        /* When user selects something -> turn black */
        #project_type:not(:invalid) {
            color: #000;
        }

        /* Placeholder option */
        #project_type option[disabled][selected] {
            color: #7a7a7a !important;
        }

        /* BUDGET */
        #budget {
            color: #7a7a7a; /* placeholder gray by default */
        }

        /* When user selects something -> turn black */
        #budget:not(:invalid) {
            color: #000;
        }

        /* Placeholder option */
        #budget option[disabled][selected] {
            color: #7a7a7a !important;
        }












        /* FAQ Section */
        .faq {
            background-color: var(--light-blue);
            position: relative;
        }
        
        .faq:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(58, 134, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(131, 56, 236, 0.05) 0%, transparent 50%);
        }
        
        .faq-container {
            max-width: 850px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            background: white;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        
        .faq-question {
            padding: 25px 30px;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: #fcfdff;
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            color: var(--dark-color);
            font-weight: 600;
        }
        
        .faq-icon {
            color: hsl(259, 100%, 62%);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: white;
        }
        
        .faq-answer p {
            padding-bottom: 25px;
            color: var(--gray-color);
            line-height: 1.7;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        /* Map Section */
        .map-section {
            padding: 0;
            height: 500px;
        }
        
        .map-container {
            height: 100%;
            width: 100%;
            background: #f0f5ff;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .map-placeholder {
            text-align: center;
            color: var(--gray-color);
            padding: 40px;
        }
        
        .map-placeholder i {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: hsl(259, 100%, 62%);
        }
        
        .map-placeholder h3 {
            font-size: 1.8rem;
            margin-bottom: 12px;
            color: var(--dark-color);
            font-weight: 700;
        }
        
        .map-placeholder p {
            font-size: 1.1rem;
        }
        
        
        
        /* Responsive Styles */
        @media (max-width: 1100px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .contact-info {
                order: 2;
            }
            
            .contact-form-container {
                order: 1;
            }
        }
        
        @media (max-width: 768px) {
            
            
            .contact-hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .contact-form-container {
                padding: 35px 30px;
            }

            
        .contact-details {
            margin: auto;
        }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 80px 0;
            }
            
            .contact-hero {
                padding: 140px 0 80px;
            }
            
            .contact-hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.9rem;
            }
            
            .contact-form-container {
                padding: 30px 25px;
            }
            
            .contact-method {
                padding: 25px 20px;
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                align-self: center;
            }
            
            .cta h2 {
                font-size: 2.2rem;
            }
            
        }
    