/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0077cc;
  --secondary-color: #a5d6f7;
  --dark-color: #0f0f0f;
  --text-color: #333;
  --light-text: #fff;
  --gray-text: #6c757d;
  --border-color: #e9ecef;
  --form-bg: #f8f9fa;
  --shadow: 0 8px 16px rgba(0, 119, 204, 0.15);
  --transition: all 0.3s ease;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  line-height: 1.3;
}

p {
  margin-bottom: 15px;
}

section {
  padding: 80px 0;
}

.section-label {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.line {
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  margin-right: 15px;
  border-radius: 2px;
}

.section-label h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
  letter-spacing: 1px;
}

/* Header Styles - Enhanced */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar .nav-links {
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.navbar .nav-links li {
  position: relative;
}

.navbar .nav-links a {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

.navbar .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar .nav-links a:hover {
  color: var(--primary-color);
}

.navbar .nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 8px;
  border-radius: 4px;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background-color: rgba(0, 119, 204, 0.1);
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--border-color);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav.show {
  display: block;
}

.mobile-nav ul {
  padding: 1.5rem 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 16px;
  padding: 0.75rem 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  display: block;
}

.mobile-nav a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Quote Hero Section - Enhanced */
.quote-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #e3f2fd 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  border-radius: 15px;
  box-shadow: var(--shadow);
  background-color: #f5f5f5;
  transition: var(--transition);
  max-width: 100%;
  height: auto;
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 119, 204, 0.2);
}

.hero-text {
  position: relative;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  color: var(--dark-color);
  font-weight: 700;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--gray-text);
  line-height: 1.6;
}

.blue-circle {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-color), #1565c0);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Quote Form Section - Enhanced */
.quote-form {
  padding: 100px 0;
  background-color: #fff;
}

.form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.form-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 30px;
  color: var(--dark-color);
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--form-bg);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 30px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.btn-request {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color), #1565c0);
  color: var(--light-text);
  padding: 15px 30px;
  width: 100%;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 119, 204, 0.3);
}

.btn-request:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 119, 204, 0.4);
}

.btn-request:active {
  transform: translateY(0);
}

/* Contact Info - Enhanced */
.contact-info {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  height: fit-content;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 15px;
  transition: var(--transition);
}

.contact-block:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
}

.contact-icon {
  margin-right: 20px;
  font-size: 24px;
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 119, 204, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark-color);
  font-weight: 600;
}

.contact-text p {
  margin-bottom: 5px;
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.5;
}

/* Next Level Idea Section - Enhanced */
.next-level {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #e3f2fd 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.next-level::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(0, 119, 204, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.next-level-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.next-level-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
  color: var(--dark-color);
  font-weight: 700;
}

.next-level-text p {
  color: var(--gray-text);
  font-size: 16px;
}

.btn-work {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color), #1565c0);
  color: var(--light-text);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 119, 204, 0.3);
  white-space: nowrap;
}

.btn-work:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 119, 204, 0.4);
}

/* Footer - Enhanced */
footer {
  background-color: var(--dark-color);
  color: var(--light-text);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column p i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .header-container {
    padding: 1rem 30px;
  }

  .hero-content,
  .form-container {
    gap: 40px;
  }

  .blue-circle {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .navbar {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .quote-hero {
    padding: 120px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-text {
    text-align: left;
  }

  .form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-content,
  .contact-info {
    padding: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .next-level-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .blue-circle {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
  }

  section {
    padding: 60px 0;
  }

  .quote-form {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }

  .header-container {
    padding: 1rem 20px;
  }

  .quote-hero {
    padding: 100px 0 50px;
  }

  .form-content,
  .contact-info {
    padding: 20px;
  }

  .contact-block {
    padding: 15px;
    margin-bottom: 25px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 15px;
  }

  .blue-circle {
    width: 80px;
    height: 80px;
    top: 5%;
    right: 5%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .social-icons {
    justify-content: center;
  }

  .btn-work {
    padding: 12px 25px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }

  .form-content h2 {
    font-size: 1.5rem;
  }

  .next-level-text h2 {
    font-size: 1.5rem;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for better accessibility */
.btn-request:focus,
.btn-work:focus,
.navbar .nav-links a:focus,
.mobile-nav a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
}
