:root {
  --deep-blue: #0a174e;
  --accent-blue: #001233;
  --gold: #ffd700;
  --white: #fff;
  --light-grey: #f5f7fa;
  --dark: #10141a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--white);
  color: var(--accent-blue);
}
a { color: var(--deep-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

/* HEADER */
header {
  background: var(--white);
  padding: 0;
  box-shadow: 0 1px 6px rgba(10,23,78,0.09);
  position: relative;
  z-index: 2;
}

.nav-container {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 38px;
  min-height: 88px;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 34px;
}
.logo img {
  height: 60px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px #0a174e14;
  padding: 2px 0;
  object-fit: contain;
}

nav {
  flex: 1 1 auto;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  color: var(--deep-blue);
  font-size: 1.09rem;
  transition: color 0.2s;
  padding: 6px 0;
  text-decoration: none;
}
nav ul li a.active,
nav ul li a:hover {
  color: var(--gold);
}

.cta-btn {
  background: var(--deep-blue);
  color: var(--white);
  border: none;
  padding: 14px 34px;
  border-radius: 24px;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 10px #0a174e17;
  margin-left: auto;
}

.cta-btn:hover {
  background: var(--accent-blue);
}

/* Responsive Navbar */
@media (max-width: 950px) {
  .nav-container {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0 8px;
    min-height: unset;
  }
  .logo {
    margin: 12px 0;
    justify-content: center;
  }
  nav ul {
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-btn { margin-left: 0; margin-bottom: 14px; }
}

/* --- HERO SECTIONS --- */
.hero, .about-hero, .services-hero, .blog-hero, .shop-hero, .contact-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding-bottom: 80px;
  background: linear-gradient(110deg, rgba(245,247,250,0.82) 55%, rgba(233,236,244,0.83) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
}
.hero-inner, .about-hero-inner, .services-hero-inner, .blog-hero-inner, .shop-hero-inner, .contact-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 56px 24px 0 24px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-title, .about-title, .services-hero-title, .blog-title, .shop-title, .contact-title {
  font-size: 2.1rem;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 14px;
  color: var(--deep-blue);
  padding-left: 44px;
  position: relative;
}
.hero-title:before, .about-title:before, .services-hero-title:before,
.blog-title:before, .shop-title:before, .contact-title:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--gold);
  position: absolute;
  left: 0; top: 53%;
  transform: translateY(-50%);
  border-radius: 2px;
}
.hero-desc, .about-desc, .services-hero-desc, .blog-desc, .shop-desc, .contact-desc {
  font-size: 1.15rem;
  color: var(--accent-blue);
  margin-bottom: 26px;
  max-width: 700px;
}

.hero-cta, .services-hero .btn, .about-hero .btn {
  margin-bottom: 32px;
}
.hero-cta button, .services-hero .btn, .about-hero .btn {
  background: transparent;
  border: 2px solid var(--deep-blue);
  color: var(--deep-blue);
  padding: 12px 28px;
  border-radius: 24px;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.hero-cta button:hover, .services-hero .btn:hover, .about-hero .btn:hover {
  background: var(--deep-blue);
  color: var(--white);
}

/* --- INFO CARDS --- */
.info-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 36px auto 0 auto;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}
.info-card {
  background: var(--deep-blue);
  color: var(--white);
  border-radius: 16px;
  padding: 28px 30px;
  min-width: 220px;
  box-shadow: 0 4px 18px rgba(10,23,78,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info-card strong {
  font-size: 1.1rem;
  margin-bottom: 7px;
  display: block;
}
.info-card .info-icon {
  font-size: 2.1rem;
  margin-bottom: 10px;
  color: var(--gold);
}
.info-card .phone-link {
  color: var(--gold);
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.15rem;
}

/* --- SECTIONS --- */
.section {
  max-width: 1200px;
  margin: 64px auto 0 auto;
  padding: 0 24px;
}
.section-title, .services-testimonials-title {
  font-size: 1.45rem;
  color: var(--deep-blue);
  font-weight: bold;
  margin-bottom: 16px;
  position: relative;
  padding-left: 44px;
}
.section-title:before, .services-testimonials-title:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--gold);
  position: absolute;
  left: 0; top: 53%;
  transform: translateY(-50%);
  border-radius: 2px;
}
.services-list, .shop-list, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 20px;
  justify-content: center;
}
.service-item, .shop-product, .blog-post {
  flex: 1 1 260px;
  min-width: 220px;
  background: var(--light-grey);
  border-radius: 10px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(10,23,78,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-item .service-icon, .shop-product .service-icon {
  font-size: 2.1rem;
  margin-bottom: 10px;
  color: var(--deep-blue);
  display: block;
}
.service-item-title, .shop-product-title, .blog-post-title {
  font-weight: bold;
  color: var(--deep-blue);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.service-item-desc, .shop-product-desc, .blog-post-desc {
  color: var(--accent-blue);
  font-size: 1rem;
  margin-bottom: 0;
}
.shop-product img {
  max-width: 100%;
  height: 110px;
  object-fit: contain;
  margin-bottom: 13px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(10,23,78,0.07);
}
.shop-product a {
  background: var(--deep-blue);
  color: var(--gold);
  border-radius: 18px;
  padding: 8px 18px;
  font-weight: bold;
  font-size: .97rem;
  text-decoration: none;
  margin-top: auto;
  transition: background .16s;
  display: inline-block;
  margin-bottom: 0;
}
.shop-product a:hover {
  background: var(--accent-blue);
  color: var(--white);
}

/* --- TESTIMONIALS --- */
.services-testimonials-section {
  background: var(--deep-blue);
  color: var(--white);
  padding: 60px 0 70px 0;
  margin-top: 48px;
}
.services-testimonials-row {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial-card {
  background: var(--white);
  color: var(--deep-blue);
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(10,23,78,0.10);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 330px;
  padding: 26px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  border-bottom: 5px solid var(--gold);
}
.testimonial-card blockquote {
  font-size: 1.05rem;
  color: var(--accent-blue);
  margin: 0 0 18px 0;
  line-height: 1.6;
  position: relative;
}
.testimonial-card blockquote:before {
  content: "“";
  font-size: 2.5rem;
  color: var(--gold);
  position: absolute;
  left: -16px; top: -12px;
}
.testimonial-author {
  font-weight: bold;
  color: var(--deep-blue);
  font-size: 1.01rem;
  margin-top: auto;
  text-align: right;
}

/* --- FORMS --- */
.callback-form-container, .contact-form-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.11);
  padding: 26px 24px 22px 24px;
  color: var(--accent-blue);
  min-width: 270px;
  width: 330px;
  border-bottom: 4px solid var(--gold);
  margin-bottom: 12px;
}
.callback-form-container h4, .contact-form-card h4 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: var(--deep-blue);
  font-weight: bold;
}
.callback-form input,
.callback-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 14px;
  border-radius: 7px;
  border: 1px solid #b5b7be;
  font-size: 1rem;
  font-family: inherit;
  background: var(--light-grey);
}
.callback-form textarea, .contact-form textarea { min-height: 70px; }
.callback-form button, .contact-form button {
  background: var(--deep-blue);
  color: var(--white);
  border: none;
  border-radius: 7px;
  font-weight: bold;
  padding: 11px 0;
  width: 100%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(10,23,78,0.09);
  margin-top: 4px;
  border-bottom: 3px solid var(--gold);
  transition: background .16s;
}
.callback-form button:hover, .contact-form button:hover {
  background: var(--gold);
  color: var(--accent-blue);
}

/* --- CONTACT DETAILS --- */
.contact-details-section {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 0 24px;
}
.contact-col {
  flex: 1 1 200px;
  padding: 0 12px;
}
.contact-col h5 {
  color: var(--deep-blue);
  font-size: 1.07rem;
  margin-bottom: 7px;
  margin-top: 0;
  font-weight: bold;
}
.contact-col ul {
  padding: 0;
  list-style: none;
  margin: 0;
  color: var(--accent-blue);
  font-size: 1rem;
  line-height: 1.7;
}
.contact-col i {
  color: var(--gold);
  margin-right: 8px;
}

/* --- GOOGLE MAP --- */
.contact-map-section {
  width: 100%;
  margin: 48px 0 0 0;
}
.contact-map-section iframe {
  width: 100%;
  height: 330px;
  border: 0;
  filter: grayscale(18%) contrast(1.1);
  display: block;
}

/* --- FOOTER --- */
footer {
  background: var(--deep-blue);
  color: var(--white);
  padding: 38px 0 20px 0;
  font-size: 1rem;
  text-align: center;
}
.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 24px;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
  margin-bottom: 22px;
}
.footer-section h4 {
  color: var(--gold);
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 9px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 6px;
}
.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-section ul li a:hover {
  color: var(--gold);
}
.footer-section a[aria-label] {
  display: inline-block;
  margin-right: 4px;
  transition: transform 0.2s;
}
.footer-section a[aria-label]:hover {
  transform: scale(1.16) rotate(-6deg);
}
.footer-copyright {
  margin-top: 18px;
  color: #e0e3e9;
  font-size: 0.96rem;
  letter-spacing: 1px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .why-content { flex-direction: column; }
  .callback-form-container, .contact-form-card { width: 100%; margin-top: 24px; }
  .why-list { width: 100%; }
  .services-testimonials-row, .services-list, .shop-list, .blog-list { flex-direction: column; gap: 18px; }
  .footer-content { flex-direction: column; gap: 14px; align-items: flex-start; }
}

@media (max-width: 800px) {
  .nav-container, .section, .why-content, .footer-content {
    padding-left: 8px;
    padding-right: 8px;
  }
  .info-cards { flex-direction: column; gap: 16px; }
  .services-list { flex-direction: column; gap: 18px; }
  .footer-content { flex-direction: column; gap: 14px; align-items: flex-start; }
  .hero, .about-hero, .services-hero, .blog-hero, .shop-hero, .contact-hero { padding-bottom: 50px; }
  .contact-map-section iframe { height: 230px; }
  .contact-details-section { flex-direction: column; gap: 24px; }
}

/* --- BLOG CARD & MODAL --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  justify-items: center;
  align-items: start;
  margin-top: 24px;
}
.blog-card {
  background: #f5f7fa;
  border-radius: 14px;
  box-shadow: 0 2px 12px #00123313;
  padding: 26px 22px 18px 22px;
  width: 320px;
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  word-break: break-word;
  overflow-wrap: break-word;
  transition: box-shadow .16s, transform .16s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.blog-title {
  font-weight: bold;
  font-size: 1.14rem;
  color: #0a174e;
  margin: 14px 0 6px 0;
  text-align: center;
  width: 100%;
  overflow-wrap: break-word;
}
.blog-content-preview {
  color: #001233;
  font-size: 1.01rem;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  white-space: pre-line;
  word-break: break-word;
  max-height: 5.6em;
}
.blog-modal {
  background: #fff;
  max-width: 540px;
  width: 96vw;
  min-height: 140px;
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: 0 12px 40px #00123335;
  padding: 38px 34px 28px 34px;
  position: relative;
  animation: fadeIn .21s;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}
.modal-content {
  font-size: 1.09rem;
  color: #001233;
  white-space: pre-line;
  margin-bottom: 0;
  text-align: left;
  word-break: break-word;
  overflow-wrap: break-word;
  width: 100%;
  flex: 1 1 auto;
}
.why-section {
  margin: 48px 0 0 0;
  padding: 0;
}
.why-flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 44px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.why-list {
  flex: 2 1 0;
  min-width: 320px;
}
.why-list h3 {
  font-size: 1.45rem;
  color: var(--deep-blue);
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: bold;
}
.why-item {
  margin-bottom: 16px;
}
.why-item strong {
  color: var(--deep-blue);
  font-size: 1.07rem;
  display: block;
}
.why-item-desc {
  color: var(--accent-blue);
  font-size: 1rem;
  margin-bottom: 0;
  margin-left: 4px;
}

.callback-form-container {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.11);
  padding: 26px 24px 22px 24px;
  color: var(--accent-blue);
  min-width: 270px;
  width: 330px;
  border-bottom: 4px solid var(--gold);
  margin-bottom: 0;
  margin-top: 0;
  flex: 1 1 340px;
  max-width: 350px;
}

@media (max-width: 900px) {
  .why-flex {
    flex-direction: column;
    gap: 28px;
    padding: 0 8px;
  }
  .callback-form-container {
    max-width: 100%;
    width: 100%;
  }
}
