/* Main Styles for domain accounting services */

/* Variables */
:root {
	--coral: #FF5E5B;
	--sand: #FFD8A9;
	--jade: #00A896;
	--coal: #2B2D42;
	--ivory: #F8F9FA;
	--header-height: 70px;
	--container-width: 1200px;
	--border-radius: 8px;
}

/* Global Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Global Styles */
body {
	font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
	line-height: 1.6;
	color: var(--coal);
	background-color: var(--ivory);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 40px;
}

section[id] {
	scroll-margin-top: 40px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 0.8em;
	font-weight: 700;
	line-height: 1.2;
	color: var(--coal);
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 30px;
}

h2:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 4px;
	background-color: var(--coral);
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: var(--jade);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--coral);
}

/* Container */
.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 24px;
	background-color: var(--coral);
	color: white;
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.btn:hover {
	background-color: var(--jade);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--coral);
	color: var(--coral);
}

.btn-outline:hover {
	background-color: var(--coral);
	color: white;
}

/* Header */
header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--header-height);
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--coral);
	text-transform: lowercase;
}

.logo span {
	color: var(--jade);
}

/* Navigation */
.menu-toggle {
	display: none;
}

.menu-btn {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 20px;
	position: relative;
	z-index: 2;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--coral);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.menu-btn span {
	top: 50%;
	transform: translateY(-50%);
}

.menu-btn span:before {
	content: '';
	top: -8px;
}

.menu-btn span:after {
	content: '';
	bottom: -8px;
}

.menu {
	display: flex;
	list-style-type: none;
}

.menu li {
	margin-left: 25px;
}

.menu a {
	color: var(--coal);
	font-weight: 600;
}

.menu a:hover {
	color: var(--coral);
}

/* Hero Section */
.hero {
	height: calc(100vh - var(--header-height));
	min-height: 500px;
	background: linear-gradient(rgb(235 197 197 / 90%), rgb(0 0 0 / 99%)), url(./img/pIE88.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	text-align: center;
	color: white;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	color: white;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 30px;
}

/* Sections */
section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2 {
	display: inline-block;
}

.section-title h2:after {
	left: 50%;
	transform: translateX(-50%);
}

/* About Section */
.about-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.service-card {
	background: white;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
	height: 200px;
	background-size: cover;
	background-position: center;
}

.service-content {
	padding: 20px;
}

/* Why Choose Us */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.feature {
	text-align: center;
	padding: 20px;
}

.feature-icon {
	font-size: 3rem;
	color: var(--coral);
	margin-bottom: 20px;
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 10px;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
}

.faq-question {
	position: relative;
	display: block;
	width: 100%;
	padding: 15px 20px;
	background-color: white;
	text-align: left;
	border: none;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background-color: var(--sand);
}

.faq-checkbox {
	position: absolute;
	opacity: 0;
	z-index: -1;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	transition: max-height 0.3s ease, padding 0.3s ease;
	background-color: var(--ivory);
}

.faq-checkbox:checked~.faq-content {
	max-height: 500px;
	padding: 20px;
}

.faq-question:after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-checkbox:checked~.faq-question:after {
	content: '-';
}

/* Testimonials */
.testimonials {
	background-color: var(--sand);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.testimonial {
	background-color: white;
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.testimonial-name {
	font-weight: 600;
}

.testimonial-position {
	font-size: 0.9rem;
	color: #666;
}

/* Contact Form */
.contact-form {
	max-width: 600px;
	margin: 0 auto;
	background-color: white;
	padding: 40px;
	border-radius: var(--border-radius);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	font-size: 1rem;
}

.form-control:focus {
	border-color: var(--coral);
	outline: none;
}

.form-check {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.form-check-input {
	margin-top: 5px;
	margin-right: 10px;
}

.form-submit {
	width: 100%;
	padding: 15px;
	font-size: 1.1rem;
}

/* Thank You Section */
.thank-you {
	margin: 10rem auto 5rem;
	border: 1px solid #ccc;
	text-align: center;
	padding: 50px;
	max-width: 600px;
	border-radius: var(--border-radius);
	background-color: white;
}

/* Policy Pages */
.policy-container {
	max-width: 800px;
	margin: 50px auto;
	background-color: white;
	padding: 40px;
	border: 1px solid #ccc;
	border-radius: var(--border-radius);
}

.policy-title {
	margin-bottom: 30px;
}

.policy-content h3 {
	margin-top: 30px;
}

/* Footer */
footer {
	background-color: var(--coal);
	color: white;
	padding: 60px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

footer h3 {
	color: white;
	margin-bottom: 20px;
}

.footer-contact li {
	margin-bottom: 10px;
	list-style-type: none;
}

.footer-contact a {
	color: var(--sand);
}

.footer-contact a:hover {
	color: var(--coral);
}

.footer-links ul {
	list-style-type: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: var(--sand);
}

.footer-links a:hover {
	color: var(--coral);
}

.footer-bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 400px;
	background-color: white;
	padding: 20px;
	border-radius: var(--border-radius);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	display: none;
}

.cookie-content {
	margin-bottom: 15px;
}

.cookie-actions {
	display: flex;
	justify-content: flex-end;
}

/* Media Queries */
@media (max-width: 992px) {
	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	section {
		padding: 60px 0;
	}
}

@media (max-width: 768px) {
	.menu-btn {
		display: block;
	}

	.menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 250px;
		height: 100vh;
		background-color: white;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: right 0.3s ease;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	}

	.menu li {
		margin: 15px 0;
	}

	.menu-toggle:checked~.menu {
		right: 0;
	}

	.menu-toggle:checked~.menu-btn span {
		background-color: transparent;
	}

	.menu-toggle:checked~.menu-btn span:before {
		transform: rotate(45deg);
		top: 0;
	}

	.menu-toggle:checked~.menu-btn span:after {
		transform: rotate(-45deg);
		bottom: 0;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.6rem;
	}

	section {
		padding: 50px 0;
	}
}

@media (max-width: 576px) {
	.container {
		padding: 0 15px;
	}

	.hero {
		min-height: 400px;
	}

	.hero h1 {
		font-size: 1.8rem;
	}

	.contact-form {
		padding: 20px;
	}

	.policy-container {
		padding: 20px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}
}