/* ============================================
   Smogs 4 Less — Classic & Elegant Design
   Teal + Slate Grey Palette
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal-900: #0a4f52;
  --teal-800: #0d6b6f;
  --teal-700: #0d7377;
  --teal-600: #118a8f;
  --teal-500: #14a0a5;
  --teal-100: #d0ecec;
  --teal-50:  #eaf6f6;
  --slate-950: #0f172a;
  --slate-900: #1e293b;
  --slate-800: #2c3e54;
  --slate-700: #3d4f65;
  --slate-600: #5a6e84;
  --slate-500: #7a8ea3;
  --slate-400: #9aadbe;
  --slate-300: #bccdd9;
  --slate-200: #dce6ee;
  --slate-100: #eef3f7;
  --slate-50:  #f6f9fc;
  --cream:     #fafcfc;
  --white:     #ffffff;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm:  0 1px 3px rgba(15,23,42,0.08);
  --shadow-md:  0 4px 16px rgba(15,23,42,0.10);
  --shadow-lg:  0 12px 40px rgba(15,23,42,0.12);
  --shadow-xl:  0 20px 60px rgba(15,23,42,0.15);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-700);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--teal-600); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--slate-950);
  line-height: 1.2;
  font-weight: 700;
}

em {
  font-style: italic;
  color: var(--teal-700);
}

/* ---------- Section Shared ---------- */
.section {
  padding: 100px 0;
}

.section__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 12px;
  position: relative;
  padding-left: 32px;
}

.section__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 2px;
  background: var(--teal-700);
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 560px;
  line-height: 1.7;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__label {
  padding-left: 0;
}

.section__header--center .section__label::before {
  display: none;
}

.section__header--center .section__subtitle {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.938rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal-700);
  color: var(--white);
  border-color: var(--teal-700);
}

.btn--primary:hover {
  background: var(--teal-800);
  border-color: var(--teal-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--teal-900);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--teal-900);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--slate-900);
  color: var(--white);
  border-color: var(--slate-900);
}

.btn--dark:hover {
  background: var(--slate-800);
  border-color: var(--slate-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,252,252,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(250,252,252,0.97);
  box-shadow: var(--shadow-sm);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate-950);
  text-decoration: none;
}

.nav__logo:hover { color: var(--slate-950); }

.nav__logo-icon {
  color: var(--teal-700);
}

.nav__logo-text em {
  font-style: italic;
  color: var(--teal-700);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-700);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--teal-700);
  background: var(--teal-50);
}

.nav__cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--teal-700);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
  transition: all var(--transition);
}

.nav__cta:hover {
  background: var(--teal-800);
  color: var(--white);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle-line {
  width: 24px;
  height: 2px;
  background: var(--slate-800);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,79,82,0.88) 0%,
    rgba(30,41,59,0.82) 50%,
    rgba(15,23,42,0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-100);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--slate-300);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300);
}

.hero__trust-item svg {
  color: var(--teal-500);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--slate-400);
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ---------- Services ---------- */
.services {
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-700), var(--teal-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-sm);
  color: var(--teal-700);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--teal-700);
  color: var(--white);
  border-color: var(--teal-700);
}

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.938rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ---------- About ---------- */
.about {
  background: var(--cream);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about__image-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about__image-accent img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--teal-700);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about__badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.about__content {
  padding: 20px 0;
}

.about__text {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin: 36px 0 40px;
  padding: 28px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.about__stat {
  text-align: left;
}

.about__stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal-700);
  line-height: 1;
  margin-bottom: 6px;
}

.about__stat-label {
  font-size: 0.813rem;
  color: var(--slate-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Why Us ---------- */
.why-us {
  background: var(--white);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  transition: all var(--transition);
  position: relative;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
  background: var(--white);
}

.why-card__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal-100);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.why-card:hover .why-card__number {
  color: var(--teal-200);
}

.why-card__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.why-card__desc {
  font-size: 0.938rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ---------- CTA Banner ---------- */
.cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,79,82,0.92), rgba(30,41,59,0.88));
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta__text {
  font-size: 1.1rem;
  color: var(--slate-300);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--cream);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start;
}

.contact__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.contact__card:hover {
  border-color: var(--teal-100);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-sm);
  color: var(--teal-700);
}

.contact__card-title {
  font-family: var(--font-sans);
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  margin-bottom: 6px;
}

.contact__card-text {
  font-size: 1rem;
  color: var(--slate-800);
  line-height: 1.6;
}

.contact__card-text a {
  color: var(--teal-700);
  font-weight: 500;
}

.contact__card-text a:hover {
  color: var(--teal-600);
  text-decoration: underline;
}

.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact__form-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-600);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.938rem;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form__input:focus {
  border-color: var(--teal-700);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--teal-50);
}

.form__input::placeholder {
  color: var(--slate-400);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a8ea3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-sm);
  color: var(--teal-800);
  font-size: 0.938rem;
  font-weight: 500;
}

.form__success svg {
  color: var(--teal-700);
  flex-shrink: 0;
}

/* ---------- Map ---------- */
.map-section {
  height: 350px;
  filter: grayscale(40%);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--slate-800);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo:hover { color: var(--white); }

.footer__logo-icon {
  color: var(--teal-500);
}

.footer__logo-text em {
  color: var(--teal-500);
  font-style: italic;
}

.footer__tagline {
  font-size: 0.938rem;
  line-height: 1.7;
  color: var(--slate-500);
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-300);
  margin-bottom: 20px;
}

.footer__links ul,
.footer__contact ul {
  list-style: none;
}

.footer__links li,
.footer__contact li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.938rem;
  color: var(--slate-500);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--teal-500);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.938rem;
  line-height: 1.6;
}

.footer__contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--teal-600);
}

.footer__contact a {
  color: var(--slate-400);
}

.footer__contact a:hover {
  color: var(--teal-500);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.813rem;
  color: var(--slate-600);
}

.footer__bottom a {
  color: var(--slate-500);
}

.footer__bottom a:hover {
  color: var(--teal-500);
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__inner {
    gap: 48px;
  }

  .about__image-accent {
    right: -20px;
    bottom: -20px;
    width: 180px;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,252,252,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--slate-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    width: 100%;
    padding: 12px 16px;
  }

  .nav__cta {
    margin-left: 0;
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 8px;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__trust {
    gap: 16px;
  }

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

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

  .about__image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__image-accent {
    width: 160px;
    bottom: -24px;
    right: -12px;
  }

  .about__stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

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

  .contact__form-wrap {
    padding: 28px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero__content { padding: 100px 16px 60px; }
  .service-card { padding: 28px 22px; }
  .about__badge { top: -12px; left: -8px; padding: 12px 16px; }
  .about__image-main img { height: 350px; }
}
