
	html {
		scroll-behavior: smooth;
	}
	html, body {
		margin: 0;
		padding: 0;
		overflow-x: hidden;
		background: url('https://png.pngtree.com/background/20231101/original/pngtree-intense-close-up-of-falling-coffee-beans-on-vibrant-yellow-background-picture-image_5836024.jpg');
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
		background-repeat: no-repeat;
	}

	/* Top Navigation Bar */
	.top-navbar {
		position: relative;
		background: linear-gradient(135deg, #5c3d2e 0%, #4a2f1f 100%);
		box-shadow: 0 2px 20px rgba(0,0,0,0.3);
		z-index: 1000;
		padding: 15px 0;
	}
	.top-navbar__container {
		max-width: 1400px;
		margin: 0 auto;
		padding: 0 30px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.top-navbar__logo {
		display: flex;
		align-items: center;
		gap: 15px;
		text-decoration: none;
		color: #ffffff;
	}
	.top-navbar__logo img {
		width: 50px;
		height: 50px;
		object-fit: cover;
		border-radius: 50%;
	}
	.top-navbar__logo-text {
		font-size: 1.5rem;
		font-weight: 700;
		color: #ffffff;
		letter-spacing: 1px;
	}
	.top-navbar__menu {
		display: flex;
		list-style: none;
		margin: 0;
		padding: 0;
		gap: 5px;
		align-items: center;
	}
	.top-navbar__menu > li {
		position: relative;
	}
	.top-navbar__menu a {
		display: block;
		padding: 10px 18px;
		color: #ffffff;
		text-decoration: none;
		font-weight: 500;
		font-size: 0.95rem;
		transition: all 0.3s ease;
		border-radius: 8px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}
	.top-navbar__menu a:hover,
	.top-navbar__menu a.active {
		background: #d4a017;
		color: #2c1810;
	}
	.top-navbar__menu .dropdown {
		position: relative;
	}
	.top-navbar__menu .dropdown-content {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		background: #fff;
		box-shadow: 0 8px 24px rgba(0,0,0,0.15);
		border-radius: 8px;
		min-width: 200px;
		padding: 8px 0;
		margin-top: 5px;
		list-style: none;
		z-index: 100;
	}
	.top-navbar__menu .dropdown:hover .dropdown-content {
		display: block;
	}
	.top-navbar__menu .dropdown-content a {
		padding: 12px 20px;
		border-radius: 0;
	}
	.top-navbar__menu .dropdown-content a:hover {
		background: #f5f5f5;
		color: #8b4513;
	}
	
	/* Mobile Menu Toggle */
	.mobile-menu-toggle {
		display: none;
		background: none;
		border: none;
		color: #fff;
		font-size: 1.8rem;
		cursor: pointer;
		padding: 8px;
		transition: all 0.3s ease;
	}
	
	.mobile-menu-toggle:hover {
		color: #ffd700;
		transform: scale(1.1);
	}
	
	.contact-container {
		max-width: 1200px;
		margin: 120px auto 40px;
		padding: 0 20px;
	}
	
	.contact-header {
		text-align: center;
		margin-bottom: 50px;
	}
	
	.contact-header h1 {
		color: #2c1810;
		font-size: 3em;
		margin-bottom: 10px;
		text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
	}
	
	.contact-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		margin-bottom: 40px;
	}
	
	.contact-box {
		background: rgba(255, 255, 255, 0.95);
		padding: 40px;
		border-radius: 15px;
		box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	}
	
	.contact-box h2 {
		color: #8b4513;
		margin-bottom: 30px;
		font-size: 2em;
	}
	
	.contact-info-item {
		margin-bottom: 30px;
	}
	
	.contact-info-item h3 {
		color: #8b4513;
		font-size: 1.3em;
		margin-bottom: 10px;
	}
	
	.contact-info-item p {
		color: #2c1810;
		line-height: 1.8;
		font-size: 1.05em;
	}
	
	.contact-form {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	
	.form-group label {
		display: block;
		color: #8b4513;
		font-weight: 600;
		margin-bottom: 8px;
		font-size: 1.05em;
	}
	
	.form-group input,
	.form-group textarea {
		width: 100%;
		padding: 12px;
		border: 2px solid #d4a017;
		border-radius: 8px;
		font-size: 1em;
		box-sizing: border-box;
		transition: border-color 0.3s;
	}
	
	.form-group input:focus,
	.form-group textarea:focus {
		outline: none;
		border-color: #8b4513;
	}
	
	.form-group textarea {
		resize: vertical;
	}
	
	.submit-btn {
		background: linear-gradient(135deg, #d4a017 0%, #c9a228 100%);
		color: #2c1810;
		border: none;
		padding: 15px 40px;
		border-radius: 8px;
		font-size: 1.1em;
		font-weight: 700;
		cursor: pointer;
		box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
		transition: all 0.3s;
	}
	
	.submit-btn:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 16px rgba(212, 160, 23, 0.5);
	}
	
	.social-icons {
		display: flex;
		gap: 15px;
		margin-top: 20px;
	}
	
	.social-icons a {
		width: 50px;
		height: 50px;
		background: #d4a017;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5em;
		text-decoration: none;
		transition: all 0.3s;
	}
	
	.social-icons a:hover {
		background: #8b4513;
		transform: translateY(-3px);
	}
	
	@media (max-width: 768px) {
		.mobile-menu-toggle {
			display: flex;
		}
		
		.top-navbar__menu {
			display: none;
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			background: linear-gradient(135deg, #5c3d2e 0%, #4a2f1f 100%);
			flex-direction: column;
			padding: 20px;
			box-shadow: 0 5px 20px rgba(0,0,0,0.3);
			border-radius: 0 0 15px 15px;
		}
		
		.top-navbar__menu.active {
			display: flex;
		}

		.top-navbar__menu-item {
			width: 100%;
			text-align: center;
			padding: 15px;
		}

		.top-navbar__dropdown {
			position: static;
		}
		
		.top-navbar__menu > li {
			width: 100%;
		}
		
		.top-navbar__menu a {
			width: 100%;
			padding: 15px;
		}
		
		.top-navbar__menu .dropdown-content {
			position: static;
			box-shadow: none;
			background: #4a2f1f;
			margin-top: 10px;
		}
		
		.contact-grid {
			grid-template-columns: 1fr;
		}
		.contact-header h1 {
			font-size: 2em;
		}
		.contact-box {
			padding: 25px;
		}
	}
