:root {
  --primary: #6c63ff;
  --secondary: #f5f6fa;
  --accent: #a47cff;
  --text: #222;
  --bg: #fff;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--secondary);
  color: var(--text);
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 1.08rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.2rem; }
a {
  color: var(--primary);
  text-decoration: none;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
/* Responsive grid and hero styles will be added as we build sections */

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(120deg, #1b0b2f 0%, #3a2fa0 60%, #a47cff 100%);
  box-shadow: none;
  padding: 1rem 0 0.5rem 0;
  transition: box-shadow 0.2s;
}
.site-branding .logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.site-nav {
  margin-top: 0.5rem;
  text-align: center;
}
.site-nav .main-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}
.site-nav .main-menu li a {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  transition: background 0.2s, color 0.2s;
}
.site-nav .main-menu li a:hover, .site-nav .main-menu li.current-menu-item a {
  background: var(--accent);
  color: #fff;
}

/* Hero Section */
.hero {
  background: #f8f7fc;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0 2rem 0;
  border-radius: 0 0 2.5rem 2.5rem;
  position: relative;
  box-shadow: none;
}
.hero-content {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #181c3a;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.hero-content p {
  font-size: 1.08rem;
  color: #333;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.btn.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.95rem 2.5rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(164,124,255,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}
.btn.btn-primary:hover {
  background: #1a1333;
  color: #fff;
  box-shadow: 0 4px 16px rgba(108,99,255,0.18);
  transform: translateY(-2px) scale(1.04);
}
.hero-contact {
  margin-top: 0.2rem;
  font-size: 1.08rem;
  color: #1a1333;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.hero-contact a {
  color: #1a1333;
  font-weight: 700;
  text-decoration: none;
  margin-left: 0.3rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}
.hero-contact a:hover {
  color: var(--accent);
}
.hero-contact .phone-icon {
  font-size: 1.2em;
  margin-right: 0.2em;
}
@media (max-width: 900px) {
  .hero-content {
    padding: 0;
    max-width: 98vw;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 2rem 0 1.5rem 0;
    border-radius: 0 0 1rem 1rem;
  }
  .hero-content {
    padding: 0;
    border-radius: 0;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
}

/* Services Section */
.services {
  padding: 3rem 0 2rem 0;
  background: #f8f7fc;
  border-radius: 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 16px rgba(164,124,255,0.06);
}
.section-title, .services h2 {
  text-align: center;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(108,99,255,0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(164,124,255,0.18);
}
.service-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.service-card a {
  color: var(--primary);
  text-decoration: none;
}
.service-card img {
  box-shadow: 0 2px 16px rgba(108,99,255,0.10);
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card img:hover {
  box-shadow: 0 8px 32px rgba(164,124,255,0.18);
  transform: scale(1.03);
}

/* About Section */
.about {
  padding: 3rem 0 2rem 0;
  text-align: center;
  background: #fff;
  border-radius: 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 16px rgba(164,124,255,0.06);
}
.about h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  padding: 3rem 0 2rem 0;
}
.contact-form {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  max-width: 500px;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  width: 100%;
}
.contact-form button {
  margin-top: 1rem;
}
.contact-success {
  color: #2e7d32;
  background: #e8f5e9;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.contact-error {
  color: #c62828;
  background: #ffebee;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.contact-info {
  text-align: center;
  margin-bottom: 2rem;
}
.contact-map {
  text-align: center;
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(90deg, #1b0b2f 60%, #1a1333 100%);
  color: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
  border-top: 1px solid #eee;
  margin-top: 3rem;
}
.footer-info {
  margin-bottom: 1rem;
}
.footer-social a {
  margin: 0 0.5rem;
  font-size: 1.7rem;
  color: var(--accent);
  transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  color: var(--primary);
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  h1 { font-size: 2rem; }
  .site-branding .logo img { height: 128px; }
}
@media (max-width: 600px) {
  .site-header, .site-footer {
    padding: 0.5rem 0;
  }
  .logo-center {
    padding: 0.2rem 0;
  }
  .site-branding .logo img { height: 72px; }
  .services, .about, .contact {
    padding: 1.5rem 0 1rem 0;
    border-radius: 1rem;
    margin: 1rem 0;
  }
  .services-grid {
    gap: 1rem;
  }
  .service-card {
    padding: 1.2rem 0.5rem;
    border-radius: 1rem;
  }
  .contact-form {
    padding: 1rem 0.5rem;
  }
}

.logo-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
}
.site-branding .logo img {
  height: 192px;
  max-width: 100%;
  display: block;
  margin: 0 auto 0.5rem auto;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(164,124,255,0.10);
}

.logo-header-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header-spacer {
  flex: 1;
}
.site-branding {
  flex: 0 0 auto;
}
.header-link {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.header-contact-link {
  color: #fff;
  background: var(--accent);
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-weight: 600;
  margin-left: 1.5rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.header-contact-link:hover {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(164,124,255,0.10);
}

.pricing {
  background: linear-gradient(120deg, #f8f7fc 60%, #f3f0fa 100%);
  border-radius: 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 16px rgba(164,124,255,0.06);
  padding: 3rem 0 2rem 0;
}
.section-title, .pricing h2 {
  text-align: center;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pricing .services-grid {
  gap: 2.5rem;
}
.pricing .service-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(108,99,255,0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: visible;
  min-width: 260px;
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing .service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(164,124,255,0.18);
}
.pricing .service-card .plan-icon {
  margin-bottom: 1.2rem;
  margin-top: 0.5rem;
}
.pricing .badge-popular {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: #a47cff;
  color: #fff;
  padding: 0.35rem 1.2rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(164,124,255,0.10);
  z-index: 2;
  letter-spacing: 0.01em;
}
.pricing .service-card.popular {
  border: 2.5px solid #a47cff;
  box-shadow: 0 8px 32px rgba(164,124,255,0.18);
}
.pricing .service-card h3 {
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
}
.pricing .service-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #a47cff;
  margin-bottom: 1rem;
}
.pricing .service-card ul, .projects .service-card ul {
  list-style: none;
  margin-bottom: 1.2rem;
  font-size: 1.08rem;
  text-align: center;
  padding-left: 0;
}
.pricing .service-card ul li {
  margin-bottom: 0.4rem;
  padding-left: 1.2em;
  position: relative;
}
.pricing .service-card ul li:before {
  content: '';
}
.pricing .service-card p {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 1.2rem;
}
.pricing .service-card .btn {
  margin-top: auto;
  width: 100%;
  max-width: 220px;
}
@media (max-width: 900px) {
  .pricing .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pricing .service-card {
    max-width: 98vw;
  }
}

.main-nav-bar {
  width: 100vw;
  background: #fff;
  box-shadow: 0 2px 8px rgba(26,19,51,0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0.5rem 0;
}
.main-menu-bar {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}
.main-menu-bar li a {
  color: #1a1333;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.main-menu-bar li a:hover, .main-menu-bar li.current-menu-item a {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 600px) {
  .main-menu-bar {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
} 