/* === Reset & Base === */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  html {
	scroll-behavior: smooth;
  }
  
  body {
	font-family: 'Inter', Arial, sans-serif;
	background: #f9fafb;
	color: #111827;
	line-height: 1.6;
  }
  
  /* === Header === */
  header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
	position: sticky;
	top: 0;
	z-index: 100;
  }
  
  header h1 {
	margin: 0;
  }
  
  .logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 400;         
	color: #000;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0rem;
  
	/* Border styling */
	border: 1.5px solid #000000;
	border-radius: 4px;      /* slightly rounded corners */
	padding: 0.2rem 0.4rem;  /* spacing inside the border */
  }
  
  
  .logo span {
	color: #06b6d4;
  }
  
  /* Nav */
  nav {
	display: flex;
	gap: 1.5rem;
  }
  nav a {
	text-decoration: none;
	color: #374151;
	font-weight: 500;
	position: relative;
  }
  nav a::after {
	content: "";
	display: block;
	height: 2px;
	width: 0;
	background: #0ea5e9;
	transition: width 0.3s ease;
	margin-top: 4px;
  }
  nav a:hover::after {
	width: 100%;
  }

	/* Hamburger */
	.hamburger {
		display: none;
		background: none;
		border: none;
		font-size: 1.5rem;
		cursor: pointer;
		color: #333;
	}
  
  /* === Buttons === */
  button, .btn-primary {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
  }
  
  .btn-primary {
	background: linear-gradient(135deg, #06b6d4, #0ea5e9, #2563eb);
	color: white;
  }
  .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }


  /* === Hero Section (Single Column Centered) === */
.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: left;
	min-height: 85vh;
	padding: 4rem 2rem;
	background: 
	  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
	  url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center/cover;
	color: #fff;
  }
  
  .hero-left {
	max-width: 650px;
	animation: fadeUp 1s ease forwards;
  }
  .hero-left h2 {
	font-size: 3rem;
	margin-bottom: 1rem;
	line-height: 1.2;
	font-weight: 700;
  }
  .hero-left p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #e5e7eb;
  }
  .hero-left .highlight {
	background: linear-gradient(90deg, #06b6d4, #0ea5e9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
  }
  
  .cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.5rem;
  }
  .btn-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
  }
  .btn-secondary:hover {
	background: #fff;
	color: #2563eb;
  }
  
  /* Trust badges */
  .trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem 2rem;
	margin-top: 1.5rem;
	font-size: 1rem;
	color: #d1d5db;
  }
  
  /* Responsive */
  @media(max-width: 768px) {
	.hero {
	  text-align: center;
	}
	.cta-buttons {
	  justify-content: center;
	}
	.trust-badges {
	  justify-content: center;
	}
  }
  
  
  /* === Sections === */
  section {
	padding: 4rem 2rem;
	text-align: center;
  }
  section h3 {
	font-size: 2.2rem;
	margin-bottom: 2rem;
	font-weight: 700;
	color: #111827;
  }
  
  /* === Services Section === */
.services {
	background: linear-gradient(180deg, #f9fafb, #ffffff);
	padding: 5rem 2rem;
	text-align: center;
  }
  
  .services h3 {
	font-size: 2.2rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.5rem;
  }
  
  .services .section-subtitle {
	color: #6b7280;
	font-size: 1.05rem;
	margin-bottom: 3rem;
  }
  
  .services .grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
  }
  
  /* Service Card */
  .services .card {
	background: #fff;
	padding: 2rem;
	border-radius: 18px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
	border: 1px solid #e5e7eb;
	transition: all 0.35s ease;
	position: relative;
  }
  .services .card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 35px rgba(0,0,0,0.12);
  }
  
  /* Icon Circle */
  .icon-circle {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: linear-gradient(135deg, #06b6d4, #0ea5e9);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.2rem;
	color: #fff;
	font-size: 1.5rem;
	box-shadow: 0 6px 16px rgba(0,0,0,0.15);
	transition: background 0.3s ease;
  }
  .card:hover .icon-circle {
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
  }
  
  /* Text */
  .services h4 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.8rem;
	color: #111827;
  }
  .services p {
	font-size: 1rem;
	color: #6b7280;
	line-height: 1.6;
  }
  
  
  /* === Steps Section === */
.steps {
	background: linear-gradient(180deg, #f9fafb, #ffffff);
	padding: 5rem 2rem;
	text-align: center;
  }
  .steps h3 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #111827;
  }
  .steps .section-subtitle {
	color: #6b7280;
	font-size: 1.05rem;
	margin-bottom: 3.5rem;
  }
  
  /* Timeline Layout */
  .timeline {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	flex-wrap: wrap;
	gap: 2rem;
  }
  
  /* Step Box */
  .step {
	flex: 1;
	min-width: 200px;
	text-align: center;
	max-width: 250px;
	position: relative;
	z-index: 2;
  }
  .step h4 {
	margin-top: 1rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: #111827;
  }
  .step p {
	margin-top: 0.5rem;
	font-size: 0.95rem;
	color: #6b7280;
	line-height: 1.5;
  }
  
  /* Number Circle */
  .step-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #06b6d4, #0ea5e9);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	margin: 0 auto;
	box-shadow: 0 6px 16px rgba(0,0,0,0.15);
	transition: transform 0.3s ease, background 0.3s ease;
  }
  .step:hover .step-circle {
	transform: scale(1.1);
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
  }
  
  /* Connector Line */
  .connector {
	flex: 1;
	height: 2px;
	background: #d1d5db;
	align-self: center;
	margin: 0 1rem;
	position: relative;
  }
  .connector::before {
	content: "";
	position: absolute;
	top: -3px;
	left: 0;
	height: 8px;
	width: 8px;
	border-radius: 50%;
	background: #d1d5db;
  }
  .connector::after {
	content: "";
	position: absolute;
	top: -3px;
	right: 0;
	height: 8px;
	width: 8px;
	border-radius: 50%;
	background: #d1d5db;
  }
  
  /* Mobile View */
  @media(max-width: 900px) {
	.timeline {
	  flex-direction: column;
	  align-items: center;
	}
	.connector {
	  width: 2px;
	  height: 40px;
	  margin: 0;
	}
  }
  
  
  /* === Contact Section === */
.contact {
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
	padding: 5rem 2rem;
	color: #fff;
  }
  
  .contact-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
  }
  
  /* Left Info */
  .contact-info h3 {
	font-size: 2.2rem;
	margin-bottom: 1rem;
	font-weight: 900;
  }
  .contact-info p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	line-height: 1.6;
  }
  .trust-points {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  .trust-points li {
	margin-bottom: 0.8rem;
	font-size: 1rem;
	display: flex;
	align-items: right;
	gap: 0.6rem;
  }
  .trust-points i {
	color: #a7f3d0;
	font-size: 1.2rem;
  }
  
  /* Right Form */
  .contact-form-card {
	background: #fff;
	color: #111827;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }
  .contact-form-card form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
  }
  
  /* Floating Labels */
  .form-group {
	position: relative;
  }
  .form-group input,
  .form-group textarea {
	width: 100%;
	padding: 0.9rem 1rem 0.9rem 2.5rem;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	font-size: 1rem;
	background: #f9fafb;
	transition: all 0.3s ease;
  }
  .form-group textarea {
	min-height: 100px;
	resize: vertical;
  }
  .form-group input:focus,
  .form-group textarea:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
	outline: none;
	background: #fff;
  }
  
  /* Floating Labels */
  .form-group label {
	position: absolute;
	top: 50%;
	left: 2.5rem;
	transform: translateY(-50%);
	font-size: 0.95rem;
	color: #6b7280;
	pointer-events: none;
	transition: all 0.2s ease;
  }
  .form-group input:focus + label,
  .form-group input:not(:placeholder-shown) + label,
  .form-group textarea:focus + label,
  .form-group textarea:not(:placeholder-shown) + label {
	top: -8px;
	left: 2.2rem;
	font-size: 0.8rem;
	color: #2563eb;
	background: #fff;
	padding: 0 0.4rem;
	border-radius: 4px;
  }
  
  /* Input Icons */
  .form-group i {
	position: absolute;
	top: 50%;
	left: 0.8rem;
	transform: translateY(-50%);
	color: #6b7280;
	font-size: 1.1rem;
  }
  
  /* Button */
  .contact-form-card .btn-primary {
	background: linear-gradient(135deg, #06b6d4, #0ea5e9);
	font-size: 1rem;
	font-weight: 600;
	padding: 0.9rem 1.5rem;
	border-radius: 10px;
	transition: all 0.3s ease;
  }
  .contact-form-card .btn-primary:hover {
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
	box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  }
  
  /* Responsive */
  @media(max-width: 900px) {
	.contact-container {
	  grid-template-columns: 1fr;
	  text-align: center;
	}
	.trust-points {
	  justify-content: center;
	}
  }
  
  
  /* === Quote Modal Backdrop === */
#quoteModal {
	display: none;
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.75);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 1rem;
  }
  #quoteModal.show {
	display: flex;
	animation: fadeIn 0.3s ease;
  }
  
  /* === Modal Box === */
  #quoteModal .modal-content {
	background: #fff;
	padding: 2rem 2.5rem;
	border-radius: 18px;
	max-width: 650px;
	width: 100%;
	max-height: 90vh;         /* 🔑 limit height */
	overflow-y: auto;         /* 🔑 scroll inside */
	box-shadow: 0 20px 40px rgba(0,0,0,0.25);
	transform: scale(0.95);
	animation: scaleUp 0.35s ease forwards;
  }
  
  
  /* === Modal Header === */
  #quoteModal h3 {
	margin: 0 0 1.5rem 0;
	font-size: 1.8rem;
	font-weight: 700;
	color: #2563eb;
	text-align: center;
	letter-spacing: 0.5px;
  }
  
  /* === Form Elements === */
  #quoteForm {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
  }
  #quoteForm label {
	font-weight: 600;
	color: #374151;
	font-size: 0.95rem;
  }
  #quoteForm input[type="text"],
  #quoteForm input[type="number"],
  #quoteForm textarea,
  #quoteForm select {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.2s ease;
  }
  #quoteForm input:focus,
  #quoteForm textarea:focus,
  #quoteForm select:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
	outline: none;
  }
  
  /* === Checkbox Group === */
  #quoteForm .checkbox-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.6rem 1rem;
	font-size: 0.95rem;
  }
  #quoteForm .checkbox-group label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
  }
  #quoteForm input[type="checkbox"] {
	accent-color: #2563eb;
	transform: scale(1.1);
  }
  
  /* === Buttons === */
  #quoteForm .form-actions {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
	margin-top: 1.2rem;
  }
  #quoteForm .btn-primary {
	background: linear-gradient(135deg, #06b6d4, #0ea5e9);
	color: #fff;
	font-weight: 600;
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
  }
  #quoteForm .btn-primary:hover {
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
	box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  }
  #quoteForm .close-btn {
	background: #f3f4f6;
	color: #374151;
	font-weight: 500;
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.2s ease;
  }
  #quoteForm .close-btn:hover {
	background: #e5e7eb;
  }
  
  /* === Animations === */
  @keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
  }
  @keyframes scaleUp {
	from { transform: scale(0.95); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
  }
  
  
  /* === Footer === */
  footer {
	padding: 1.2rem;
	text-align: center;
	font-size: 0.9rem;
	background: #fff;
	color: #6b7280;
	border-top: 1px solid #e5e7eb;
  }
  footer a {
	color: #0ea5e9;
	text-decoration: none;
  }
  footer a:hover {
	text-decoration: underline;
  }
  
/* Mobile styles */
@media (max-width: 768px) {
	header {
	  justify-content: space-between;
	}
  
	/* Right align logo + hamburger */
	.logo {
	  font-size: 1.5rem;
	  margin-right: auto;
	}
  
	.quote-btn {
	  display: none; /* hide quote button on mobile */
	}
  
	nav {
	  display: none;
	  position: absolute;
	  top: 70px;
	  right: 1rem;
	  background: white;
	  flex-direction: column;
	  align-items: flex-start;
	  padding: 1rem 2rem;
	  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
	  border-radius: 8px;
	  z-index: 999;
	}
  
	nav.show {
	  display: flex;
	}
  
	/* Hamburger button */
	.hamburger {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  background: none;
	  border: none;
	  font-size: 1.8rem;
	  cursor: pointer;
	  color: #333;
	  margin-left: auto; /* push it right */
	  transition: transform 0.3s ease;
	}
  
	/* Change icon color on active */
	.hamburger.active {
	  color: #2563eb;
	}
  }