/* Google Fonts are loaded via HTML */
:root {
  --primary: #1e3a8a;
  --accent: #fbbf24;
  --bg: #f9fafb;
  --text: #22223b;
  --white: #fff;
  --shadow: 0 4px 24px rgba(30,58,138,0.08);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', 'Montserrat', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.gd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.gd-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.gd-logo span {
  color: var(--accent);
}
.gd-nav {
  display: flex;
  gap: 2rem;
}
.gd-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.gd-nav a:hover {
  color: var(--primary);
}
.gd-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.gd-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.gd-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem 2rem 2rem;
  background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
  color: var(--white);
  flex-wrap: wrap;
}
.gd-hero-content {
  max-width: 500px;
}
.gd-hero-content h1 {
  font-size: 2.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
.gd-hero-content h1 span {
  color: var(--accent);
}
.gd-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.gd-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s;
}
.gd-cta:hover {
  background: var(--white);
  color: var(--primary);
}
.gd-hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 250px;
}
.gd-hero-image img {
  width: 350px;
  max-width: 100%;
  border-radius: 2rem 0 2rem 0;
  box-shadow: var(--shadow);
}
.gd-section {
  padding: 4rem 2rem 2rem 2rem;
  background: var(--bg);
}
.gd-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}
.gd-services-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.gd-service-card {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 260px;
  margin-bottom: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gd-service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(30,58,138,0.15);
}
.gd-service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.gd-about {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto 2rem auto;
  padding: 2.5rem 2rem;
}
.gd-about-contact {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
}
.gd-about-contact a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s;
}
.gd-about-contact a:hover {
  color: var(--accent);
}
.gd-contact {
  max-width: 600px;
  margin: 0 auto;
}
.gd-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}
.gd-contact-form input,
.gd-contact-form textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.7rem;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  transition: border 0.2s;
}
.gd-contact-form input:focus,
.gd-contact-form textarea:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}
.gd-contact-form button {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.gd-contact-form button:hover {
  background: var(--accent);
  color: var(--primary);
}
.gd-footer {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
}
.gd-footer-links {
  display: flex;
  gap: 1.5rem;
}
.gd-footer-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.gd-footer-links a:hover {
  color: var(--white);
}
.gd-footer-contact {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
}
.gd-footer-contact span {
  color: var(--accent);
}
.gd-footer-contact a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s;
}
.gd-footer-contact a:hover {
  color: var(--white);
}
@media (max-width: 900px) {
  .gd-hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem 1rem 1rem;
  }
  .gd-hero-image {
    justify-content: center;
    margin-top: 2rem;
  }
}
@media (max-width: 700px) {
  .gd-header {
    padding: 1rem 1rem;
  }
  .gd-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 1rem;
    background: var(--white);
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    z-index: 200;
    min-width: 180px;
    transition: all 0.3s;
  }
  .gd-nav.active {
    display: flex;
  }
  .gd-menu-toggle {
    display: flex;
  }
}
@media (max-width: 500px) {
  .gd-hero-content h1 {
    font-size: 2rem;
  }
  .gd-section {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .gd-service-card {
    width: 100%;
    padding: 1.2rem 0.7rem;
  }
  .gd-about {
    padding: 1.2rem 0.7rem;
  }
  .gd-contact-form {
    padding: 1.2rem 0.7rem;
  }
  .gd-footer {
    padding: 1rem 0.5rem;
  }
} 