* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(
      90deg,
      rgba(25, 25, 25, 0.8) 0%,
      rgba(25, 25, 25, 0.8) 100%
    ),
    url("images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  min-height: 100vh;
  padding-top: 140px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 1rem;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid #ffcc00;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  gap: 20px;
}

.header-content .logo {
  flex-shrink: 0;
}

.header-content .header-nav {
  flex: 1;
  justify-content: center;
}

.header-content .header-call {
  flex-shrink: 0;
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  max-height: 80px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo a:hover img {
  opacity: 0.8;
}

.header-call {
  display: flex;
  align-items: center;
}

.call-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #cc0000;
  border: 1px solid #ff6666;
  border-radius: 50px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
  animation: pulse 2s infinite;
}

.call-button:hover {
  background: #ae0101;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6);
  border-color: #ff8888;
}

.phone-icon {
  font-size: 1.5rem;
  animation: shake 0.5s infinite;
}

.call-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.call-label {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffeeee;
}

.phone-number {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255, 68, 68, 0.7);
  }
  100% {
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
  }
}

@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  10% {
    transform: rotate(-10deg) scale(1.1);
  }
  20% {
    transform: rotate(10deg) scale(0.9);
  }
  30% {
    transform: rotate(-8deg) scale(1.05);
  }
  40% {
    transform: rotate(8deg) scale(0.95);
  }
  50% {
    transform: rotate(-5deg) scale(1.02);
  }
  60% {
    transform: rotate(5deg) scale(0.98);
  }
  70% {
    transform: rotate(-3deg) scale(1.01);
  }
  80% {
    transform: rotate(3deg) scale(0.99);
  }
  90% {
    transform: rotate(-1deg) scale(1);
  }
}

.header-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header-nav a {
  color: #ffcc00;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
}

.header-nav a:hover {
  color: #ffdd66;
  background: rgba(255, 204, 0, 0.1);
}

.header-nav a:active {
  transform: scale(0.95);
}

.title-container {
  text-align: center;
  margin-bottom: 40px;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  color: #fff3cc;
  opacity: 0.9;
}

.form-section {
  background: rgba(204, 153, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  border: 2px solid #cc9900;
}

.form-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #ffdd66;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.radio-option:hover {
  background: rgba(255, 204, 0, 0.2);
  border-color: #ffcc00;
  transform: translateX(5px);
}

.radio-option input[type="radio"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ffcc00;
  margin-right: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .checkmark {
  background: #ffcc00;
  box-shadow: 0 0 10px #ffcc00;
}

.radio-option input[type="radio"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.radio-option .text {
  font-size: 1.1rem;
  font-weight: 500;
}

.other-input {
  margin-top: 15px;
}

.other-input input {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #cc9900;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
}

.other-input input::placeholder {
  color: #fff3cc;
}

.contact-form {
  background: rgba(204, 153, 0, 0.4);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  border: 2px solid #ffcc00;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.5rem;
  color: #ffdd66;
}

.form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group input {
  flex: 1;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #cc9900;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #ffcc00;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.form-group input::placeholder {
  color: #fff3cc;
}

.cta-button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #ffcc00, #e6b800);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #ffdd66, #ffb300);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.5);
}

.company-info {
  background: rgba(204, 153, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid #cc9900;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.company-info h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #ffdd66;
}

.info-content p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff3cc;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
  text-align: center;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 204, 0, 0.3);
}

.stat h3 {
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 5px;
  font-weight: bold;
}

.stat p {
  color: #fff3cc;
  font-size: 0.9rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 204, 0, 0.3);
}

.feature h4 {
  color: #ffdd66;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature p {
  color: #fff3cc;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-info {
  margin: 40px 0;
}

.contact-info h3 {
  text-align: center;
  color: #ffdd66;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 204, 0, 0.3);
}

.contact-item h4 {
  color: #ffcc00;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-item p {
  color: #fff3cc;
  font-size: 0.9rem;
  line-height: 1.4;
}

.testimonials {
  margin: 40px 0;
}

.testimonials h3 {
  text-align: center;
  color: #ffdd66;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 4px solid #ffcc00;
}

.testimonial p {
  color: #fff3cc;
  font-style: italic;
  line-height: 1.6;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(135deg, #cc9900, #2c1810);
  margin: 15% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  border: 2px solid #ffcc00;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #ffdd66;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ffcc00;
}

.modal-content h3 {
  color: #ffdd66;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.modal-content p {
  margin-bottom: 25px;
  line-height: 1.6;
  color: #fff3cc;
}

.modal-button {
  padding: 12px 30px;
  background: linear-gradient(135deg, #ffcc00, #e6b800);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-button:hover {
  background: linear-gradient(135deg, #ffdd66, #ffb300);
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 920px) {
  .container {
    padding: 15px;
  }

  header h1 {
    font-size: 2.5rem;
  }

  .header-content {
    gap: 15px;
  }

  .header-nav {
    display: none;
  }

  .header-call {
    display: none;
  }

  .burger-menu {
    display: flex !important;
    order: 3;
  }
}

@media (min-width: 921px) {
  .mobile-menu {
    right: -100% !important;
  }

  .burger-menu {
    display: none !important;
  }

  .call-button {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .phone-icon {
    font-size: 1.3rem;
  }

  .call-label {
    font-size: 0.7rem;
  }

  .phone-number {
    font-size: 1rem;
  }

  .form-group {
    flex-direction: column;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .modal-content {
    margin: 30% auto;
    width: 95%;
  }
}

@media (max-width: 500px) {
  body {
    padding-top: 120px;
  }

  .header-content {
    justify-content: space-between;
    flex-direction: row;
  }

  .logo img {
    max-height: 60px;
  }

  .mobile-menu {
    width: 100vw;
    right: -100vw;
  }

  .mobile-menu.active {
    right: 0;
  }

  .burger-menu {
    width: 28px;
    height: 20px;
  }
}

@media (max-width: 340px) {
  .title {
    font-size: 2.5rem;
  }
}

/* Footer Styles */
footer {
  background: rgba(0, 0, 0, 0.4);
  margin-top: 50px;
  padding: 40px 0 20px;
  border-top: 2px solid #ffcc00;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  /* text-align: center; */
  margin-bottom: 15px;
}

.footer-logo a {
  display: inline-block;
  text-decoration: none;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
  transition: opacity 0.3s ease;
}

.footer-logo a:hover img {
  opacity: 0.8;
}

.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-section h4 {
  color: #ffcc00;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p {
  color: #fff3cc;
  line-height: 1.6;
}

.footer-section ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #fff3cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 204, 0, 0.3);
}

.footer-bottom p {
  color: #fff3cc;
  font-size: 0.9rem;
}

/* Policy Pages Styles */
.policy-page {
  background: rgba(204, 153, 0, 0.2);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  border: 2px solid #cc9900;
}

.policy-page h2 {
  color: #ffcc00;
  margin-bottom: 20px;
  font-size: 2.2rem;
  text-align: center;
}

.policy-page h3 {
  color: #ffdd66;
  margin: 25px 0 15px 0;
  font-size: 1.4rem;
}

.policy-page p {
  color: #fff3cc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.policy-page ul {
  color: #fff3cc;
  margin: 15px 0;
  padding-left: 20px;
}

.policy-page ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.policy-page strong {
  color: #ffcc00;
}

/* Contact page phone styling */
.phone-contacts {
  margin: 20px 0;
}

.phone-item {
  margin-bottom: 15px;
}

.phone-item h4 {
  color: #ffcc00;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.phone-link {
  display: inline-block;
  padding: 12px 20px;
  background: #cc0000;
  border: 1px solid #ff6666;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
  animation: pulse 2s infinite;
}

.phone-link:hover {
  background: #ae0101;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6);
  border-color: #ff8888;
}

/* Contact page email styling */
.email-contacts {
  margin: 20px 0;
}

.email-item {
  margin-bottom: 15px;
}

.email-item a {
  display: inline-block;
  padding: 12px 10px;
  background: linear-gradient(135deg, #ffcc00 0%, #cc9900 100%);
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 8px;
  border: 2px solid #ffdd66;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.email-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.email-item a:hover {
  background: linear-gradient(135deg, #ffdd66 0%, #ffcc00 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
  border-color: #cc9900;
}

.email-item a:hover::before {
  left: 100%;
}

.email-item a:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 204, 0, 0.2);
}

/* Burger Menu Styles */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  flex-shrink: 0;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background: #ffcc00;
  transition: all 0.3s ease;
  transform-origin: center;
  display: block;
  border-radius: 2px;
}

.burger-menu:hover {
  background: rgba(255, 204, 0, 0.1);
}

.burger-menu:hover span {
  background: #ffdd66;
}

.burger-menu:active span {
  background: #cc9900;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(30px);
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -9px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  transition: right 0.3s ease;
  z-index: 1000;
  padding-top: 100px;
  border-left: 2px solid #ffcc00;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-nav a {
  color: #ffcc00;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 204, 0, 0.2);
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mobile-nav a:hover {
  color: #ffdd66;
  padding-left: 10px;
}

.mobile-call {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #ffcc00;
}

.mobile-call-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  background: #cc0000;
  border: 1px solid #ff6666;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
  animation: pulse 2s infinite;
}

.mobile-call-button:hover {
  background: #ae0101;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6);
  border-color: #ff8888;
}

.mobile-call-button .phone-icon {
  font-size: 1.2rem;
}
