/* ===================================
		   GLASSMORPHISM CONTACT SECTION - KONSEPT 1
		   =================================== */

           .contact-us-section-v1 {
			padding: 50px 0;
			position: relative;
			overflow: hidden;
			background: linear-gradient(135deg, #006b88 0%, #00a8cc 50%, #006b88 100%);
			background-size: 200% 200%;
		}

		/* Animated Gradient Background */
		.gradient-bg-animated {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background:
				radial-gradient(circle at 20% 50%, rgba(0, 168, 204, 0.4) 0%, transparent 50%),
				radial-gradient(circle at 80% 80%, rgba(0, 136, 170, 0.3) 0%, transparent 50%),
				radial-gradient(circle at 40% 20%, rgba(0, 107, 136, 0.2) 0%, transparent 50%);
			animation: gradientShift 15s ease infinite;
			pointer-events: none;
		}

		@keyframes gradientShift {
			0%, 100% {
				opacity: 1;
				transform: scale(1) rotate(0deg);
			}
			50% {
				opacity: 0.8;
				transform: scale(1.1) rotate(5deg);
			}
		}

		/* Glassmorphic Card */
		.contact-card-glassmorphic {
			background: rgba(255, 255, 255, 0.12);
			backdrop-filter: blur(20px);
			-webkit-backdrop-filter: blur(20px);
			border: 1px solid rgba(255, 255, 255, 0.2);
			border-radius: 32px;
			padding: 40px;
			position: relative;
			overflow: hidden;
			box-shadow:
				0 20px 60px rgba(0, 0, 0, 0.3),
				0 8px 24px rgba(0, 0, 0, 0.2),
				inset 0 1px 1px rgba(255, 255, 255, 0.3);
		}

		/* Geometric Floating Shapes */
		.floating-shapes {
			position: absolute;
			width: 100%;
			height: 100%;
			top: 0;
			left: 0;
			pointer-events: none;
			overflow: hidden;
		}

		.geometric-shape {
			position: absolute;
			opacity: 0.1;
		}

		.geometric-shape-1 {
			width: 120px;
			height: 120px;
			background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
			border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
			top: 10%;
			left: 5%;
			animation: float1 20s ease-in-out infinite;
		}

		.geometric-shape-2 {
			width: 80px;
			height: 80px;
			background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
			border-radius: 50%;
			top: 60%;
			left: 10%;
			animation: float2 15s ease-in-out infinite;
		}

		.geometric-shape-3 {
			width: 100px;
			height: 100px;
			background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
			border-radius: 20px;
			top: 30%;
			left: 15%;
			animation: float3 18s ease-in-out infinite;
			transform: rotate(45deg);
		}

		@keyframes float1 {
			0%, 100% { transform: translate(0, 0) rotate(0deg); }
			25% { transform: translate(20px, 20px) rotate(90deg); }
			50% { transform: translate(0, 40px) rotate(180deg); }
			75% { transform: translate(-20px, 20px) rotate(270deg); }
		}

		@keyframes float2 {
			0%, 100% { transform: translate(0, 0) scale(1); }
			50% { transform: translate(30px, -30px) scale(1.2); }
		}

		@keyframes float3 {
			0%, 100% { transform: translate(0, 0) rotate(45deg); }
			50% { transform: translate(-30px, 30px) rotate(225deg); }
		}

		/* Contact Visual Wrapper */
		.contact-visual-wrapper {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			position: relative;
			z-index: 1;
		}

		/* Large Contact Icon with Pulse */
		.contact-icon-large {
			width: 140px;
			height: 140px;
			background: rgba(255, 255, 255, 0.15);
			backdrop-filter: blur(10px);
			-webkit-backdrop-filter: blur(10px);
			border: 2px solid rgba(255, 255, 255, 0.3);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			margin-bottom: 40px;
			position: relative;
			box-shadow:
				0 10px 40px rgba(0, 0, 0, 0.2),
				inset 0 1px 1px rgba(255, 255, 255, 0.3);
		}

		.contact-icon-large i {
			font-size: 64px;
			color: #ffffff;
		}

		/* Pulse Animation */
		.contact-icon-large::before,
		.contact-icon-large::after {
			content: '';
			position: absolute;
			width: 100%;
			height: 100%;
			border: 2px solid rgba(255, 255, 255, 0.4);
			border-radius: 50%;
			animation: pulse 2s ease-out infinite;
		}

		.contact-icon-large::after {
			animation-delay: 1s;
		}

		@keyframes pulse {
			0% {
				transform: scale(1);
				opacity: 1;
			}
			100% {
				transform: scale(1.5);
				opacity: 0;
			}
		}

		/* Trust Badges */
		.trust-badges {
			display: flex;
			gap: 20px;
			margin-top: 40px;
		}

		.trust-badge {
			background: rgba(255, 255, 255, 0.15);
			backdrop-filter: blur(10px);
			-webkit-backdrop-filter: blur(10px);
			border: 1px solid rgba(255, 255, 255, 0.25);
			border-radius: 16px;
			padding: 20px 24px;
			text-align: center;
			transition: all 0.3s ease;
			min-width: 140px;
		}

		.trust-badge:hover {
			background: rgba(255, 255, 255, 0.2);
			transform: translateY(-4px);
			box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
		}

		.trust-badge i {
			font-size: 32px;
			color: #ffffff;
			margin-bottom: 12px;
			display: block;
		}

		.trust-badge-text {
			color: #ffffff;
			font-size: 0.75rem;
			font-weight: 600;
			line-height: 1.4;
			margin: 0;
		}

		/* Contact Form Wrapper */
		.contact-form-wrapper {
			position: relative;
			z-index: 1;
		}

		.contact-form-title {
			font-size: 2.0rem;
			font-weight: 700;
			color: #ffffff;
			margin-bottom: 12px;
			letter-spacing: -0.02em;
		}

		.contact-form-subtitle {
			font-size: 1rem;
			color: rgba(255, 255, 255, 0.9);
			margin-bottom: 40px;
			font-weight: 400;
		}

		/* Floating Label Form Controls */
		.form-floating-wrapper {
			position: relative;
			margin-bottom: 20px;
		}

		.form-control-floating {
			width: 100%;
			padding: 12px;
			font-size: 1rem;
			color: #ffffff;
			background: rgba(255, 255, 255, 0.3);
			border: 1px solid rgba(255, 255, 255, 0.4);
			border-radius: 12px;
			outline: none;
			transition: all 0.3s ease;
			backdrop-filter: blur(10px);
			-webkit-backdrop-filter: blur(10px);
		}

		.form-control-floating::placeholder {
			color: rgba(255, 255, 255, 0.6);
		}

		.form-control-floating:focus {
			background: rgba(255, 255, 255, 0.4);
			border-color: rgba(255, 255, 255, 0.6);
			box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
		}

		.form-label-floating {
			position: absolute;
			left: 16px;
			top: 16px;
			font-size: 1rem;
			color: rgba(255, 255, 255, 0.6);
			pointer-events: none;
			transition: all 0.3s ease;
			font-weight: 400;
			background: transparent;
		}

		/* Float label when focused or has value */
		.form-control-floating:focus + .form-label-floating,
		.form-control-floating:not(:placeholder-shown) + .form-label-floating {
			top: -10px;
			left: 12px;
			font-size: 0.75rem;
			color: rgba(255, 255, 255, 1);
			font-weight: 500;
			background: linear-gradient(to bottom, transparent 0%, rgba(0, 107, 136, 0.9) 20%, rgba(0, 107, 136, 0.9) 80%, transparent 100%);
			padding: 0 8px;
			border-radius: 4px;
		}

		/* Gradient CTA Button */
		.btn-primary-gradient {
			background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
			color: #006b88;
			border: none;
			padding: 18px 48px;
			font-size: 1.125rem;
			font-weight: 700;
			border-radius: 12px;
			cursor: pointer;
			transition: all 0.3s ease;
			box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
			width: 100%;
			margin-top: 16px;
			letter-spacing: 0.02em;
		}

		.btn-primary-gradient:hover {
			transform: translateY(-2px);
			box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
			background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 1) 100%);
		}

		.btn-primary-gradient:active {
			transform: translateY(0);
		}

		.btn-primary-gradient i {
			margin-left: 8px;
			transition: transform 0.3s ease;
		}

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

		/* Privacy Note */
		.privacy-note {
			margin-top: 24px;
			display: flex;
			align-items: flex-start;
			gap: 12px;
			background: rgba(255, 255, 255, 0.08);
			padding: 16px;
			border-radius: 12px;
			border: 1px solid rgba(255, 255, 255, 0.15);
		}

		.privacy-note i {
			color: rgba(255, 255, 255, 0.8);
			font-size: 16px;
			margin-top: 2px;
			flex-shrink: 0;
		}

		.privacy-note-text {
			font-size: 0.875rem;
			color: rgba(255, 255, 255, 0.8);
			line-height: 1.6;
			margin: 0;
		}

		/* Responsive Design */
		@media (max-width: 991px) {
			.contact-card-glassmorphic {
				padding: 40px;
			}

			.contact-icon-large {
				width: 120px;
				height: 120px;
			}

			.contact-icon-large i {
				font-size: 56px;
			}

			.contact-form-title {
				font-size: 2rem;
			}

			.trust-badges {
				gap: 16px;
			}

			.trust-badge {
				min-width: 120px;
				padding: 16px 20px;
			}

			.trust-badge i {
				font-size: 28px;
			}
		}

		@media (max-width: 767px) {
			.contact-us-section-v1 {
				padding: 40px 0;
			}

			.contact-card-glassmorphic {
				padding: 32px 24px;
				border-radius: 24px;
			}

			.contact-visual-wrapper {
				margin-bottom: 40px;
			}

			.contact-icon-large {
				width: 100px;
				height: 100px;
				margin-bottom: 32px;
			}

			.contact-icon-large i {
				font-size: 48px;
			}

			.contact-form-title {
				font-size: 1.75rem;
			}

			.contact-form-subtitle {
				font-size: 1rem;
				margin-bottom: 32px;
			}

			.trust-badges {
				flex-direction: column;
				gap: 12px;
				margin-top: 32px;
			}

			.trust-badge {
				width: 100%;
				min-width: unset;
			}

			.btn-primary-gradient {
				padding: 16px 32px;
				font-size: 1rem;
			}

			.form-floating-wrapper {
				margin-bottom: 20px;
			}
		}
		 
			.geometric-shape-1,
			.geometric-shape-2,
			.geometric-shape-3 {
				display: none;
			}