        * {
        	margin: 0;
        	padding: 0;
        	box-sizing: border-box;
        }

        body {
        	font-family: 'Inter', sans-serif;
        	color: #333;
        	background: #fff;
        }

        a {
        	text-decoration: none;
        	color: inherit;
        }

        ul {
        	list-style: none;
        }



        /* Header */
        header {
        	position: absolute;
        	top: 0;
        	left: 0;
        	right: 0;
        	z-index: 100;
        	padding: 20px 0;
        }

        .header-inner {
        	display: flex;
        	align-items: center;
        	justify-content: space-between;
        }

        .logo {
        	display: flex;
        	align-items: center;
        	gap: 10px;
        }

        .logo-icon {
        	width: 42px;
        	height: 42px;
        	background: linear-gradient(135deg, #6366f1, #3b82f6, #06b6d4);
        	border-radius: 50%;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	position: relative;
        	overflow: hidden;
        }

        .logo-icon::before {
        	content: '';
        	position: absolute;
        	width: 16px;
        	height: 16px;
        	background: #fbbf24;
        	border-radius: 50%;
        	top: 6px;
        	left: 6px;
        }

        .logo-icon::after {
        	content: '';
        	position: absolute;
        	width: 7px;
        	height: 10px;
        	background: #1e3a5f;
        	border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        	bottom: 5px;
        	right: 8px;
        }

        .logo-text {
        	color: #fff;
        }

        .logo-text .brand {
        	font-size: 16px;
        	font-weight: 700;
        	font-style: italic;
        	letter-spacing: 0.5px;
        }

        .logo-text .sub {
        	font-size: 8px;
        	font-weight: 400;
        	letter-spacing: 1.5px;
        	text-transform: uppercase;
        	opacity: 0.7;
        }

        .our-services {
        	border-bottom: 1px solid #f1f5f9;
        }

        nav {
        	display: flex;
        	align-items: center;
        	gap: 28px;
        }

        nav a {
        	color: #fff;
        	font-size: 15px;
        	font-weight: 500;
        	transition: opacity 0.3s;
        }

        nav a:hover {
        	opacity: 0.8;
        }

        nav a.active {
        	font-weight: 700;
        }

        .header-right {
        	display: flex;
        	align-items: center;
        	gap: 20px;
        }

        .header-phone {
        	color: #fff;
        	font-size: 14px;
        	font-weight: 500;
        	display: flex;
        	align-items: center;
        	gap: 6px;
        }

        .header-phone i {
        	font-size: 13px;
        }

        .lang-select {
        	color: #fff;
        	font-size: 14px;
        	display: flex;
        	align-items: center;
        	gap: 6px;
        	cursor: pointer;
        }

        .lang-select i {
        	font-size: 11px;
        }

        /* Hero Section */
        .hero2 {
        	position: relative;
        	height: 320px;
        	background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 30%, #0ea5e9 60%, #38bdf8 100%);
        	overflow: hidden;
        }

        .hero2-bg {
        	position: absolute;
        	inset: 0;
        	width: 100%;
        	height: auto;
        	background: url('../img/Bg_CONTACT US1.jpg') left/cover;
        	opacity: 1;
        }

        .hero2-overlay {
        	position: absolute;
        	inset: 0;
        	background: linear-gradient(to right, rgba(0, 30, 60, 0.5) 0%, rgba(0, 30, 60, 0.1) 60%, transparent 100%);
        }

        .hero-content {
        	position: relative;
        	z-index: 2;
        	display: flex;
        	align-items: center;
        	height: 100%;
        }

        .hero h1 {
        	color: #fff;
        	font-size: 56px;
        	font-weight: 800;
        	letter-spacing: 2px;
        	text-transform: uppercase;
        }

        .hero-boat {
        	position: absolute;
        	right: 12%;
        	top: 10%;
        	z-index: 1;
        }

        .hero-boat img {
        	width: 280px;
        	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        	transform: rotate(-5deg);
        }




        /* Contact Section */
        .contact-section {
        	padding: 60px 0 60px;
        }

        .contact-grid {
        	display: grid;
        	grid-template-columns: 280px 1fr;
        	gap: 60px;
        }

        .contact-info h3 {
        	font-size: 20px;
        	font-weight: 600;
        	color: #1e293b;
        	margin-bottom: 30px;
        }

        .contact-item {
        	display: flex;
        	align-items: flex-start;
        	gap: 15px;
        	margin-bottom: 25px;
        }

        .contact-item-icon {
        	width: 40px;
        	height: 40px;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	flex-shrink: 0;
        }

        .contact-item-icon svg {
        	width: 28px;
        	height: 28px;
        }

        .contact-item-content {
        	flex: 1;
        }

        .contact-item-content .label {
        	font-size: 13px;
        	color: #94a3b8;
        	margin-bottom: 4px;
        }

        .contact-item-content .value {
        	font-size: 14px;
        	color: #334155;
        	line-height: 1.5;
        }

        /* Form */
        .contact-form2 h3 {
        	font-size: 20px;
        	font-weight: 600;
        	color: #1e293b;
        	margin-bottom: 30px;
        	display: flex;
        	align-items: center;
        	gap: 10px;
			line-height: 30px;
        }

        .contact-form2 h3 svg {
        	width: 24px;
        	height: 24px;
        }

        .form-group {
        	margin-bottom: 20px;
        }

        .form-group label {
        	display: block;
        	font-size: 13px;
        	color: #64748b;
        	margin-bottom: 6px;
        	font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
        	width: 100%;
        	padding: 10px 14px;
        	border: 1px solid #e2e8f0;
        	border-radius: 6px;
        	font-size: 14px;
        	font-family: 'Inter', sans-serif;
        	color: #334155;
        	transition: border-color 0.3s;
        	outline: none;
        	background: #fff;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
        	border-color: #3b82f6;
        }

        .form-group textarea {
        	height: 120px;
        	resize: vertical;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder,
        .form-group select::placeholder {
        	color: #94a3b8;
        }

        .form-row {
        	display: grid;
        	grid-template-columns: 1fr 1fr;
        	gap: 20px;
        }

        .form-error {
        	display: flex;
        	align-items: center;
        	gap: 6px;
        	font-size: 13px;
        	color: #ef4444;
        	margin-bottom: 20px;
        }

        .form-error i {
        	font-size: 12px;
        }

        .submit-btn {
        	display: inline-flex;
        	align-items: center;
        	gap: 8px;
        	background: #f59e0b;
        	color: #fff;
        	padding: 12px 28px;
        	border-radius: 6px;
        	font-size: 15px;
        	font-weight: 600;
        	border: none;
        	cursor: pointer;
        	transition: background 0.3s;
        	font-family: 'Inter', sans-serif;
        }

        .submit-btn:hover {
        	background: #d97706;
        }

        .submit-btn i {
        	font-size: 13px;
        }


        /* Responsive */
        @media (max-width: 1024px) {}

        @media (max-width: 768px) {

        	.hero2-bg {
        		position: absolute;

        		width: 120%;
        		height: auto;
        		background: url('../img/Bg_CONTACT.jpg') left/cover;
        		opacity: 1;
        	}

        	.form-row {
        		grid-template-columns: 1fr;
        	}


        	.contact-form2 {
             				padding: 0px;
        		display: block;
        		align-items: center;

        	}

        	.form-row {
        		grid-template-columns: 1fr;
        	}

        	.contact-grid {
        		display: block;
        		grid-template-columns: 280px 1fr;

        	}
			.send_message{
				margin-top: 60px;
			}
        }