* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont,
		"Segoe UI", Roboto, sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
	font-weight: 400;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Navigation */
.navbar {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	border-bottom: 1px solid rgba(206, 156, 45, 0.1);
	transition: all 0.3s ease;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.logo {
	font-size: 1.6rem;
	font-weight: bold;
	color: #ce9c2d;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 1.5rem;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	transition: color 0.3s;
	position: relative;
}

.nav-links a:hover {
	color: #ce9c2d;
}

.nav-links a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: #ce9c2d;
	transition: width 0.3s;
}

.nav-links a:hover::after {
	width: 100%;
}

.contact-btn {
	background: linear-gradient(135deg, #ce9c2d, #b8891f);
	color: white;
	padding: 0.7rem 1.5rem;
	border: none;
	cursor: pointer;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.85rem;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
	border-radius: 5px;
}

.contact-btn:hover {
	background: linear-gradient(135deg, #b8891f, #a67a1b);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(206, 156, 45, 0.3);
}

.mobile-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 5px;
}

.mobile-menu span {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.mobile-menu.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.nav-links.active {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	padding: 1rem 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	z-index: 999;
}

.nav-links.active a {
	padding: 0.8rem 1.5rem;
	font-size: 1rem;
}

/* Show on desktop only */
.desktop-only {
	display: inline-block;
}

/* Hidden by default in desktop */
.mobile-contact {
	display: none;
}

/* Hero Section */
.hero {
	background: linear-gradient(
			135deg,
			rgba(206, 156, 45, 0.6),
			rgba(184, 137, 31, 0.6)
		),
		url("hero.jpg");
	background-size: cover;
	background-position: center;
	margin-top: 60px;
	height: 80vh;
	display: flex;
	align-items: center;
	text-align: center;
	color: white;
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.95;
}

.cta-button {
	background: white;
	color: #ce9c2d;
	padding: 1rem 2rem;
	border: none;
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
	border: 3px solid transparent;
}

.cta-button:hover {
	background: transparent;
	color: white;
	border-color: white;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section {
	padding: 6rem 0;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	position: relative;
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	margin-bottom: 4rem;
	color: #666;
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
	line-height: 1.6;
}

.section-title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #ce9c2d, #b8891f);
	margin: 1.5rem auto 0;
}

.bg-dark .section-title {
	color: #fff;
}

.bg-dark .section-title::after {
	background: linear-gradient(90deg, #ce9c2d, #b8891f);
}

/* About Us */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-top: 2rem;
}

.about-text h3 {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 1rem;
	font-weight: 700;
}

.about-text p {
	font-size: 1rem;
	color: #666;
	margin-bottom: 1rem;
	line-height: 1.7;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.stat-item {
	text-align: center;
	padding: 1rem;
	background: #f8f9fa;
	border-left: 3px solid #ce9c2d;
}

.stat-number {
	font-size: 2rem;
	font-weight: bold;
	color: #ce9c2d;
	display: block;
}

.stat-label {
	color: #666;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
}

.about-image {
	background: linear-gradient(45deg, #f8f9fa, #e9ecef);
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #ce9c2d;
	border: 3px solid #ce9c2d;
}

.about-image img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: 8px;
}

/* Popular Real Estates */
.properties-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.property-card {
	background: white;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	border: 1px solid #e9ecef;
	border-radius: 12px;
}

.property-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
	border-color: #ce9c2d;
}

.property-image {
	height: 200px;
	background: linear-gradient(45deg, #f8f9fa, #e9ecef);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #ce9c2d;
	position: relative;
}

.property-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: linear-gradient(135deg, #ce9c2d, #b8891f);
	color: white;
	padding: 0.4rem 0.8rem;
	font-size: 0.75rem;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 16px;
}

.property-content {
	padding: 1.5rem;
}

.property-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 0.6rem;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.property-location {
	color: #666;
	margin-bottom: 0.8rem;
	font-size: 0.9rem;
}

.property-features {
	display: flex;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
	font-size: 0.85rem;
	color: #666;
}

.property-price {
	font-size: 1.1rem;
	font-weight: bold;
	color: #ce9c2d;
	border-top: 1px solid #f8f9fa;
	padding-top: 0.8rem;
}

/* Why Choose Us */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.feature-card {
	background: white;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	border-left: 3px solid #ce9c2d;
	border-radius: 6px;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
	font-size: 3rem;
	color: #ce9c2d;
	margin-bottom: 1rem;
}

.feature-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 0.8rem;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.feature-description {
	color: #666;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* Services */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.service-card {
	background: white;
	padding: 2rem;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	border: 1px solid rgba(206, 156, 45, 0.1);
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	border-color: #ce9c2d;
}

.service-card.large-card {
	padding: 2.5rem;
}

.service-icon {
	font-size: 3.5rem;
	color: #ce9c2d;
	margin-bottom: 1.5rem;
}

.service-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.service-description {
	color: #666;
	line-height: 1.7;
	font-size: 1rem;
}

/* BHK Services Section */
.bhk-services-section {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(206, 156, 45, 0.2);
}

.bhk-section-title {
	text-align: center;
	font-size: 2rem;
	color: #ce9c2d;
	margin-bottom: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.bhk-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.bhk-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	border: 1px solid rgba(206, 156, 45, 0.1);
	position: relative;
	overflow: hidden;
}

.bhk-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ce9c2d, #b8891f);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.bhk-card:hover::before {
	transform: scaleX(1);
}

.bhk-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
	border-color: #ce9c2d;
}

.bhk-icon {
	font-size: 2.5rem;
	color: #ce9c2d;
	margin-bottom: 1rem;
}

.bhk-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.bhk-description {
	color: #666;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.bhk-features {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	align-items: center;
}

.bhk-features span {
	color: #ce9c2d;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.2rem 0;
}

/* Working Process */
.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.process-step {
	background: white;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	border: 2px solid #f8f9fa;
	transition: all 0.3s;
	border-radius: 10px;
}

.process-step:hover {
	border-color: #ce9c2d;
	transform: translateY(-5px);
}

.step-number {
	background: linear-gradient(135deg, #ce9c2d, #b8891f);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 1rem;
	position: relative;
	z-index: 2;
}

.step-number::before {
	content: "";
	position: absolute;
	width: 70px;
	height: 70px;
	background: rgba(206, 156, 45, 0.1);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.step-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 0.8rem;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.step-description {
	color: #666;
	line-height: 1.6;
}

/* Contact */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 2rem;
}

.contact-info {
	background: white;
	padding: 2rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	border-left: 3px solid #ce9c2d;
	border-radius: 6px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f8f9fa;
}

.contact-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.contact-icon {
	font-size: 1.5rem;
	color: #ce9c2d;
	margin-right: 1rem;
	width: 35px;
	flex-shrink: 0;
}

.contact-details h4 {
	font-size: 1.1rem;
	color: #333;
	margin-bottom: 0.4rem;
	font-weight: bold;
	text-transform: uppercase;
}

.contact-details p {
	color: #666;
	line-height: 1.5;
}

.contact-form {
	background: white;
	padding: 2rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	border-top: 3px solid #ce9c2d;
	border-radius: 6px;
}

.form-group {
	margin-bottom: 1.2rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.4rem;
	color: #333;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.8rem;
	border: 2px solid #e9ecef;
	border-radius: 5px;
	font-size: 0.95rem;
	transition: border-color 0.3s;
	background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: #ce9c2d;
	background: white;
}

.form-group textarea {
	resize: vertical;
	height: 100px;
}

.submit-btn {
	background: linear-gradient(135deg, #ce9c2d, #b8891f);
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s;
	width: 100%;
	font-size: 0.95rem;
}

.submit-btn:hover {
	background: linear-gradient(135deg, #b8891f, #a67a1b);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(206, 156, 45, 0.3);
}

/* Footer */
.footer {
	background: #1a1a1a;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.footer-section h3 {
	color: #ce9c2d;
	margin-bottom: 1rem;
	text-transform: uppercase;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
	color: #ccc;
	text-decoration: none;
	line-height: 1.7;
	margin-bottom: 0.4rem;
	display: block;
}

.footer-section a:hover {
	color: #ce9c2d;
}

.footer-bottom {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 2px solid #333;
	color: #999;
}

/* Background Sections */
.bg-light {
	background: #f8f9fa;
}

.bg-dark {
	background: #333;
	color: white;
}

.bg-dark .section-title {
	color: #ce9c2d;
}

.bg-dark .section-subtitle {
	color: #ccc;
}

/* Floating WhatsApp Button */
.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #25d366;
	color: white;
	border-radius: 50%;
	padding: 15px 22px;
	font-size: 24px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	transition: transform 0.3s;
	text-align: center;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	background-color: #20ba5a;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.navbar {
		font-size: 0.6rem;
	}

	.nav-links {
		display: none;
	}

	.mobile-menu {
		display: flex;
	}

	.hero {
		height: 60vh;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-content p {
		font-size: 1rem;
		max-width: 95%;
	}

	.cta-button {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	.section {
		padding: 3rem 0;
	}

	.section-title {
		font-size: 2rem;
	}

	.section-subtitle {
		font-size: 1rem;
		max-width: 95%;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.about-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.about-image {
		height: 250px;
	}

	.about-image img {
		height: 250px;
	}

	.properties-grid,
	.services-grid,
	.process-steps,
	.features-grid,
	.bhk-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.service-card.large-card {
		padding: 1.5rem;
	}

	.bhk-services-section {
		margin-top: 2rem;
		padding-top: 1.5rem;
	}

	.bhk-section-title {
		font-size: 1.8rem;
	}

	.property-image {
		height: 180px;
	}

	.property-title {
		font-size: 1.1rem;
	}

	.property-price {
		font-size: 1rem;
	}

	.feature-icon {
		font-size: 2.5rem;
	}

	.feature-title {
		font-size: 1.1rem;
	}

	.service-icon {
		font-size: 3rem;
	}

	.service-title {
		font-size: 1.2rem;
	}

	.bhk-icon {
		font-size: 2rem;
	}

	.bhk-title {
		font-size: 1.1rem;
	}

	.step-number {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}

	.step-number::before {
		width: 60px;
		height: 60px;
	}

	.step-title {
		font-size: 1.1rem;
	}

	.contact-info,
	.contact-form {
		padding: 1.5rem;
	}

	.contact-icon {
		font-size: 1.3rem;
		width: 30px;
	}

	.contact-details h4 {
		font-size: 1rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.desktop-only {
		display: none;
	}

	.mobile-contact {
		display: block;
		text-align: center;
		margin-top: 1rem;
	}

	.mobile-contact .contact-btn {
		display: inline-block;
		padding: 0.8rem 2rem;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 10px;
	}

	.hero {
		margin-top: 70px;
		height: 55vh;
	}

	.hero-content h1 {
		font-size: 1.8rem;
	}

	.hero-content p {
		font-size: 0.9rem;
	}

	.cta-button {
		padding: 0.7rem 1.2rem;
		font-size: 0.85rem;
	}

	.section {
		padding: 2rem 0;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.section-subtitle {
		font-size: 0.9rem;
	}

	.property-card,
	.service-card,
	.process-step,
	.feature-card,
	.bhk-card {
		margin: 0 5px;
		padding: 1.5rem;
	}

	.nav-container {
		padding: 0 10px;
	}

	.logo {
		font-size: 0.9rem;
	}

	.contact-btn {
		padding: 0.6rem 1.2rem;
		font-size: 0.6rem;
	}

	.services-grid {
		gap: 1.5rem;
	}

	.service-card.large-card {
		padding: 1.2rem;
	}

	.bhk-card {
		padding: 1.5rem;
	}

	.bhk-section-title {
		font-size: 1.6rem;
	}

	.property-image {
		height: 160px;
	}

	.form-group input,
	.form-group textarea,
	.form-group select {
		padding: 0.7rem;
		font-size: 0.9rem;
	}

	.submit-btn {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	.footer-section h3 {
		font-size: 1rem;
	}

	.footer-section p,
	.footer-section a {
		font-size: 0.9rem;
	}
}
