body {
  font-family: 'Lato', 'Poppins', Arial, sans-serif;
  margin: 0;
  background: #f7f8f5;
  color: #1b4d3e;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.professional-header {
  background: linear-gradient(135deg, #f7f8f5 0%, #e8ebe5 100%);
  box-shadow: 0 4px 20px rgba(27,77,62,0.12);
  border-bottom: 3px solid #ffc44d;
  padding: 0;
  min-height: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 20px;
  height: 80px;
}
.nav-left {
  flex: 1;
  display: flex;
  align-items: center;
}
.nav-left ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.nav-left a {
  text-decoration: none;
  color: #1b4d3e;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  padding: 12px 16px;
  border-radius: 8px;
  position: relative;
}
.nav-left a:hover, .nav-left a:focus {
  color: #ffc44d;
  background: rgba(255,196,77,0.1);
  transform: translateY(-2px);
}
.nav-left a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffc44d;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-left a:hover::after {
  width: 80%;
}
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.nav-right a {
  text-decoration: none;
  color: #1b4d3e;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  padding: 12px 16px;
  border-radius: 8px;
  position: relative;
}
.nav-right a:hover, .nav-right a:focus {
  color: #ffc44d;
  background: rgba(255,196,77,0.1);
  transform: translateY(-2px);
}
.nav-right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffc44d;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-right a:hover::after {
  width: 80%;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  margin-left: 20px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1b4d3e;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.logo-svg {
  display: flex;
  align-items: center;
  min-width: 220px;
  margin: 0 0 0 0;
  padding: 15px 0;
  transition: transform 0.3s ease;
}
.logo-svg:hover {
  transform: scale(1.05);
}
.logo-text {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2em;
  font-weight: bold;
  color: #1b4d3e;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffc44d 0%, #1b4d3e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 32px 0 0;
  padding: 10px 0;
  white-space: nowrap;
}
.hero-bg {
  background-image: url('https://images.unsplash.com/photo-1503389152951-9c3d0e1eaf1f?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-reno {
  background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-tiles {
  background-image: url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-tools {
  background-image: url('images/renovation-tools-gallery.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero {
  color: #fff;
  text-align: center;
  padding: 100px 0 70px 0;
  position: relative;
  min-height: 350px;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(27,77,62,0.65);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 0.2em;
  letter-spacing: 2px;
  color: #ffc44d;
  text-shadow: 0 2px 8px rgba(27,77,62,0.25);
}
.hero p {
  font-size: 1.4em;
  margin-bottom: 1.5em;
  color: #f4f5ab;
  text-shadow: 0 2px 8px rgba(27,77,62,0.18);
}
.cta {
  background: #ffc44d;
  color: #1b4d3e;
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(27,77,62,0.10);
}
.cta:hover {
  background: #1b4d3e;
  color: #ffc44d;
  box-shadow: 0 4px 16px rgba(27,77,62,0.18);
}
section {
  padding: 60px 0 40px 0;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(27,77,62,0.03);
}
section h2 {
  font-size: 2em;
  margin-bottom: 24px;
  color: #1b4d3e;
  border-left: 8px solid #ffc44d;
  padding-left: 16px;
}
.about p {
  font-size: 1.15em;
  line-height: 1.7;
  color: #3a6351;
}
.services-list {
  columns: 2;
  column-gap: 40px;
  padding-left: 0;
  list-style: disc inside;
}
.service-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 10px;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.8);
}
.services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1.08em;
  gap: 8px;
  color: #1b4d3e;
}
.gallery-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(27,77,62,0.1);
}

.gallery-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 0;
}

.gallery-item {
  flex: 0 0 33.333%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 8px;
}

.gallery-item:first-child {
  margin-left: 0;
}

.gallery-item:last-child {
  margin-right: 0;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(27,77,62,0.2);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(27,77,62,0.8);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(27,77,62,0.9);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b7b7a4;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #ffc44d;
}

.dot:hover {
  background: #e9ec58;
}
.gallery-note {
  color: #3a6351;
  font-size: 0.95em;
  text-align: center;
}
.reviews .review {
  background: #f7f8c0;
  border-left: 5px solid #ffc44d;
  margin-bottom: 24px;
  padding: 18px 24px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(27,77,62,0.03);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.review-rating {
  color: #ffc44d;
  font-size: 1.1em;
  font-weight: bold;
}
.review-date {
  color: #3a6351;
  font-size: 0.9em;
  font-style: italic;
}
.review-text {
  font-size: 1.1em;
  margin-bottom: 12px;
  color: #1b4d3e;
  line-height: 1.6;
}
.review-author {
  font-size: 0.98em;
  color: #3a6351;
  font-weight: 600;
  margin-bottom: 4px;
}
.review-service {
  font-size: 0.85em;
  color: #666;
  font-style: italic;
}
.reviews-note {
  color: #888;
  font-size: 0.95em;
  text-align: right;
}
.contact form {
  max-width: 500px;
  margin: 0 auto;
  background: #f7f8f5;
  padding: 30px 24px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(27,77,62,0.04);
}
.form-group {
  margin-bottom: 18px;
}
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #1b4d3e;
}
input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #b7b7a4;
  border-radius: 6px;
  font-size: 1em;
  font-family: inherit;
  box-sizing: border-box;
  background: #fff;
  color: #1b4d3e;
}
input:focus, textarea:focus {
  outline: 2px solid #ffc44d;
  border-color: #ffc44d;
}
textarea {
  min-height: 90px;
  resize: vertical;
}
#formMessage {
  margin-top: 12px;
  font-size: 1em;
  color: #1b4d3e;
}
footer {
  background: linear-gradient(135deg, #1b4d3e 0%, #0f2e24 100%);
  color: #fff;
  padding: 40px 0 20px 0;
  border-radius: 12px 12px 0 0;
  margin-top: 30px;
  box-shadow: 0 -4px 20px rgba(27,77,62,0.15);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: #ffc44d;
  font-size: 1.2em;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid rgba(255,196,77,0.3);
  padding-bottom: 8px;
}

.footer-section p {
  margin: 8px 0;
  font-size: 0.95em;
  line-height: 1.5;
  color: #e8f4f0;
}

.company-name {
  font-weight: 600;
  color: #fff !important;
  font-size: 1em !important;
}

.company-address {
  color: #c8e6d9 !important;
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #a8d5c5;
  font-size: 0.9em;
  margin: 0;
}

footer a {
  color: #ffc44d;
  text-decoration: underline;
  transition: color 0.2s;
}

footer a:hover {
  color: #fff;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}
.slide-in {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 1s forwards;
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: none;
  }
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 1100px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(27,77,62,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(27,77,62,0.05);
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(27,77,62,0.15);
  border-color: rgba(255,196,77,0.3);
}
.service-card-header {
  display: flex;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #f8f9f6 0%, #f0f2ed 100%);
  border-bottom: 1px solid rgba(27,77,62,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}
.service-card-header:hover {
  background: linear-gradient(135deg, #f0f2ed 0%, #e8ebe5 100%);
}
.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffc44d 0%, #f0b030 100%);
  border-radius: 12px;
  margin-right: 16px;
  color: #1b4d3e;
  transition: all 0.3s ease;
}
.service-card-header:hover .service-card-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(255,196,77,0.3);
}
.service-card-title {
  font-size: 1.3em;
  font-weight: 700;
  color: #1b4d3e;
  flex: 1;
  margin: 0;
}
.toggle-btn {
  background: none;
  border: 2px solid #ffc44d;
  color: #ffc44d;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}
.toggle-btn:hover {
  background: #ffc44d;
  color: #1b4d3e;
  transform: scale(1.1);
}
.toggle-btn.expanded {
  background: #ffc44d;
  color: #1b4d3e;
}
.service-card-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}
.service-card-content.expanded {
  padding: 24px;
  max-height: 1000px;
  opacity: 1;
}
.service-card-content.collapsed {
  max-height: 0;
  padding: 0 24px;
  opacity: 0;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
}
.service-list li {
  padding: 8px 12px;
  background: rgba(27,77,62,0.03);
  border-radius: 8px;
  font-size: 0.95em;
  color: #3a6351;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.service-list li:hover {
  background: rgba(255,196,77,0.1);
  border-left-color: #ffc44d;
  transform: translateX(4px);
}
.service-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 10px;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.8);
}
@media (max-width: 1000px) {
  .logo-svg {
    min-width: 180px;
    margin: 0 0 0 0;
  }
  .nav-left ul {
    gap: 24px;
  }
  .nav-right ul {
    gap: 24px;
  }
}
@media (max-width: 800px) {
  .services-list {
    columns: 1;
  }
  .gallery-item {
    width: 100%;
  }
  .gallery-item img {
    height: 300px;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .header-flex {
    flex-direction: row;
    height: 80px;
    padding: 0 20px;
  }
  .logo-svg {
    margin: 0;
    min-width: 200px;
  }
  .nav-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f7f8f5 0%, #e8ebe5 100%);
    box-shadow: 0 4px 20px rgba(27,77,62,0.12);
    border-bottom: 3px solid #ffc44d;
    padding: 20px;
    gap: 0;
    z-index: 99;
  }
  .nav-menu.active li {
    margin: 10px 0;
  }
  .nav-menu.active a {
    display: block;
    padding: 15px 20px;
    font-size: 1.1em;
    border-radius: 8px;
    text-align: center;
  }
  .nav-menu.active a:hover {
    background: rgba(255,196,77,0.1);
  }
  .services-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card-header {
    padding: 20px;
  }
  .service-card-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
  .service-card-title {
    font-size: 1.2em;
  }
  .toggle-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .service-list li {
    padding: 10px 12px;
    font-size: 0.9em;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2em;
  }
  section {
    padding: 40px 0 30px 0;
  }
  .logo-text {
    font-size: 1.5em;
  }
  .gallery-item {
    width: 100%;
  }
  .gallery-item img {
    height: 250px;
  }
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .nav-right ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-right a {
    font-size: 0.9em;
    padding: 6px 10px;
  }
  .service-card-header {
    padding: 16px;
  }
  .service-card-icon {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }
  .service-card-title {
    font-size: 1.1em;
  }
  .toggle-btn {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
  .service-card-content.expanded {
    padding: 16px;
  }
  .service-list li {
    padding: 8px 10px;
    font-size: 0.85em;
  }
}
@media (max-width: 800px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-section h3 {
    font-size: 1.1em;
    margin-bottom: 12px;
  }
  
  .footer-section p {
    font-size: 0.9em;
  }
} 

@media (max-width: 600px) {
  .popup-content {
    max-width: 95%;
    width: 95%;
    padding: 24px 16px 16px 16px;
    max-height: 85vh;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
} 