/* Black and white modern theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #111;
    background-color: #fff;
    font-size: 16px;
}

/* Header and navigation */
header {
    background: #111;
    color: #fff;
    padding: 1.2rem 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
}

nav a:hover, nav a:focus {
    color: #111;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Dropdown styles - Vertical */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.8rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu a {
    color: #111;
    padding: 1rem 1.5rem;
    display: block;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
    font-size: 1rem;
    border-radius: 0;
    margin: 0;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #111;
    border: none;
    transform: translateX(5px);
    box-shadow: none;
}

/* Main content */
main {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

section {
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

h2 {
    color: #111;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

h3 {
    color: #111;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h4 {
    color: #111;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.2rem;
}

.service-list {
    list-style: disc inside;
    margin-left: 1.5rem;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-list li {
    margin-bottom: 0.5rem;
}

/* Service cards for home page */
.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.05rem;
}

.service-link {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Service cards layout for individual service pages */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.service-cards .service-card {
    margin: 0;
    padding: 2.5rem;
}

.service-cards .service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.service-cards .service-card h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    color: #111;
}

.service-cards .service-card .cta-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
}

.service-cards .service-card .cta-section h4 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.service-cards .service-card .cta-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.info-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee;
    margin: 2.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Contact page styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-method {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-method h4 {
    margin-bottom: 0.8rem;
    color: #111;
    font-size: 1.3rem;
}

.contact-method p {
    color: #666;
    margin: 0;
    font-size: 1.05rem;
}

.contact-form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* CTA sections for service pages */
.cta-section {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 2px solid #111;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-section h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.cta-section p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    font-weight: 600;
    font-size: 1rem;
    color: #111;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    color: #111;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #111;
}

.contact-form button {
    background: #111;
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Reviews page styles */
.reviews-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.rating-summary {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #eee;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stars {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rating-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-header .stars {
    font-size: 1.2rem;
    margin: 0;
}

.review-card blockquote {
    border-left: 4px solid #111;
    padding-left: 1.5rem;
    color: #333;
    font-style: italic;
    background: transparent;
    border-radius: 0;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.review-card footer {
    font-size: 1rem;
    color: #888;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    font-size: 1.1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    nav h1 {
        font-size: 1.8rem;
    }
    nav ul {
        gap: 1rem;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
        min-width: auto;
    }
    .dropdown-menu a {
        color: #fff;
        padding: 0.25rem 0;
        font-size: 0.9rem;
    }
    .dropdown-menu a:hover {
        background: transparent;
        color: #ccc;
        transform: none;
    }
    main {
        padding: 0 1rem;
        margin: 2rem auto;
    }
    section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .services-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .reviews-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .review-card {
        padding: 1.5rem;
    }
}

/* Project Submission Form Styles */
.submission-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.project-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: #111;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #111;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #111;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.word-count {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.form-note {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.file-upload-info {
    margin-top: 0.5rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #111;
}

.file-upload-info p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #555;
}

.file-upload-info p:last-child {
    margin-bottom: 0;
}

.image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.preview-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #111;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.form-submit button {
    background: #111;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit button:hover:not(:disabled) {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.form-submit button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive adjustments for form */
@media (max-width: 768px) {
    .project-form {
        padding: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .image-preview {
        justify-content: center;
    }
    
    .preview-image {
        width: 100px;
        height: 100px;
    }
} 

/* --- Enhanced Quote Submission Form Styles --- */
#project-submission {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: #f7f9fb;
  padding: 40px 0;
}

.submission-form-container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
  padding: 3rem 2.5rem;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#quote-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#quote-form input[type="text"],
#quote-form input[type="email"],
#quote-form input[type="tel"],
#quote-form input[type="url"],
#quote-form textarea {
  width: 100%;
  padding: 1.1rem 1rem;
  border: 2px solid #e0e6ed;
  border-radius: 8px;
  font-size: 1.1rem;
  background: #f8fafc;
  margin-bottom: 0.1rem;
  transition: border-color 0.2s;
}

#quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

#quote-form input[type="text"]:focus,
#quote-form input[type="email"]:focus,
#quote-form input[type="tel"]:focus,
#quote-form input[type="url"]:focus,
#quote-form textarea:focus {
  border-color: #0077ff;
  outline: none;
  background: #fff;
}

#quote-form input[type="file"] {
  font-size: 1.05rem;
  margin-top: 0.2rem;
}

#quote-form button[type="submit"] {
  background: linear-gradient(90deg, #0077ff 0%, #00c6ff 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem 0;
  border: none;
  border-radius: 8px;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,119,255,0.08);
  transition: background 0.2s, transform 0.2s;
}

#quote-form button[type="submit"]:hover {
  background: linear-gradient(90deg, #005fcc 0%, #0099cc 100%);
  transform: translateY(-2px) scale(1.02);
}

#form-status {
  margin-top: 1rem;
  font-size: 1.08rem;
  color: #e74c3c;
  text-align: center;
}

#word-count, #image-count {
  font-weight: 600;
  color: #0077ff;
}

@media (max-width: 700px) {
  .submission-form-container {
    padding: 1.5rem 0.5rem;
    max-width: 98vw;
  }
  #quote-form {
    gap: 1rem;
  }
} 

/* --- Enhanced mobile responsiveness --- */
@media (max-width: 600px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 1.2em;
    right: 1.2em;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    z-index: 2001;
    cursor: pointer;
  }
  .hamburger span, .hamburger span:before, .hamburger span:after {
    display: block;
    position: absolute;
    width: 28px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
    left: 4px;
  }
  .hamburger span {
    top: 16px;
  }
  .hamburger span:before {
    content: '';
    top: -10px;
  }
  .hamburger span:after {
    content: '';
    top: 10px;
  }
  .hamburger.active span {
    background: transparent;
  }
  .hamburger.active span:before {
    top: 0;
    transform: rotate(45deg);
  }
  .hamburger.active span:after {
    top: 0;
    transform: rotate(-45deg);
  }
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17,17,17,0.97);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 4em;
  }
  .mobile-menu-overlay.active {
    display: flex;
  }
  .mobile-menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100vw;
    text-align: center;
  }
  .mobile-menu-overlay li {
    margin: 1.2em 0;
  }
  .mobile-menu-overlay a {
    color: #fff;
    font-size: 1.3em;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7em;
  }
  .mobile-menu-overlay i {
    font-size: 1.3em;
  }
  nav ul, nav .dropdown-menu {
    display: none !important;
  }
  .mobile-nav {
    z-index: 1000;
  }
} 

/* Hide hamburger and mobile menu overlay on desktop */
.hamburger,
.mobile-menu-overlay {
  display: none;
}

@media (max-width: 600px) {
  .hamburger {
    display: block;
  }
  /* .mobile-menu-overlay is still display: none by default, .active will show it */
} 