body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #222;
}

/* ===========================
   HERO SECTION STYLES - ULTRA-MINIMAL K-STYLE
   =========================== */

.hero-section-minimal {
  background: #ffffff;
  padding: 140px 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.hero-minimal-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-minimal-content h1 {
  font-size: 3.5rem;
  font-weight: 200;
  color: #1a1a1a;
  margin: 0 0 30px 0;
  letter-spacing: 12px;
  text-transform: uppercase;
  line-height: 1.1;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.hero-minimal-content p {
  font-size: 0.95rem;
  color: #666;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ===========================
   PROJECT SUMMARY STRIP STYLES
   =========================== */

.project-summary-strip {
  background: #fafafa;
  padding: 80px 20px;
  border-bottom: 2px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
}

.summary-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.summary-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.summary-icon {
  width: 90px;
  height: 90px;
  border: 2px solid #113768;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.summary-icon i {
  font-size: 2.2rem;
  color: #113768;
}

.summary-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #113768;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.summary-divider {
  width: 1px;
  height: 80px;
  background: #d0d0d0;
}

@media (max-width: 768px) {
  .summary-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .summary-divider {
    width: 80px;
    height: 1px;
  }
  
  .summary-icon {
    width: 70px;
    height: 70px;
  }
  
  .summary-icon i {
    font-size: 1.8rem;
  }
  
  .summary-item h3 {
    font-size: 1rem;
  }
}

/* ===========================
   PROJECTS GRID SECTION STYLES
   =========================== */

.projects-grid-section {
  background: #f5f5f5;
  padding: 100px 40px;
  border-bottom: 1px solid #e0e0e0;
}

.projects-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.project-card-big {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid #e8e8e8;
}

.project-card-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #d0d0d0;
}

.project-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card-big:hover .project-image img {
  transform: scale(1.08);
}

.project-info {
  padding: 24px;
}

.project-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #113768;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.project-category {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.project-category.construction {
  background: #e3f2fd;
  color: #1976d2;
}

.project-category.fitout {
  background: #f3e5f5;
  color: #7b1fa2;
}

.project-category.catering {
  background: #fff3e0;
  color: #f57c00;
}

.project-category.ems {
  background: #e8f5e9;
  color: #388e3c;
}

.project-location {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 12px 0;
  font-weight: 500;
}

.project-description {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1200px) {
  .projects-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .projects-grid-section {
    padding: 60px 30px;
  }
  
  .projects-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .project-image {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .projects-grid-section {
    padding: 40px 20px;
  }
  
  .projects-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .project-image {
    height: 250px;
  }
  
  .project-title {
    font-size: 1.15rem;
  }
}

/* ===========================
   PROJECT DETAILS PREVIEW STYLES
   =========================== */

.project-details-preview {
  background: #ffffff;
  padding: 80px 40px;
}

.preview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.preview-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #113768;
  text-align: center;
  margin: 0 0 60px 0;
  letter-spacing: 1px;
}

.project-detail-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.project-detail-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.detail-image {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-detail-card:hover .detail-image img {
  transform: scale(1.05);
}

.detail-content {
  flex: 1;
}

.detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #113768;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.detail-meta {
  font-size: 1rem;
  color: #067b9e;
  font-weight: 600;
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
}

.detail-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .project-details-preview {
    padding: 60px 30px;
  }
  
  .preview-heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .project-detail-card {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .detail-image {
    width: 100%;
    height: 220px;
  }
  
  .detail-title {
    font-size: 1.3rem;
  }
  
  .detail-meta {
    font-size: 0.95rem;
  }
  
  .detail-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .project-details-preview {
    padding: 40px 20px;
  }
  
  .preview-heading {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .project-detail-card {
    padding: 16px;
    margin-bottom: 20px;
  }
  
  .detail-image {
    height: 200px;
  }
  
  .detail-title {
    font-size: 1.15rem;
  }
}

/* ===========================
   NEW FOOTER STYLES
   =========================== */

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 60px 0 0 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Footer Navigation - Top Center */
.footer-links {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 50px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #067b9e;
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #067b9e;
}

.footer-nav a:hover::after {
    width: 100%;
}

/* Footer Content - 3 Columns */
.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

/* Footer Column Base */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Company Info - Left */
.footer-col.company-info {
    padding-right: 20px;
    grid-column: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.footer-logo .logo-icon {
    width: 60px;
    height: 60px;
    background: #067b9e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(6, 123, 158, 0.3);
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.footer-logo .logo-sub {
    font-size: 0.9rem;
    color: #b0c4de;
    font-weight: 500;
}

.company-description {
    color: #b0c4de;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: justify;
}

/* Services - Center */
.footer-col.services {
    grid-column: 2;
}

.footer-col.services h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col.services h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #067b9e;
}

.footer-col.services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col.services ul li {
    margin-bottom: 14px;
}

.footer-col.services ul li a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-col.services ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #067b9e;
    font-weight: bold;
    transition: left 0.3s ease;
}

.footer-col.services ul li a:hover {
    color: #ffffff;
    padding-left: 25px;
}

.footer-col.services ul li a:hover::before {
    left: 5px;
}

/* Contact Form - Right */
.footer-col.contact-form {
    grid-column: 3;
}

.footer-col.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col.contact-form h3 i {
    color: #067b9e;
    font-size: 1.2rem;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: #b0c4de;
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #067b9e;
    background: rgba(255, 255, 255, 0.08);
}

#contactForm textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: linear-gradient(90deg, #067b9e 0%, #113768 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 123, 158, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(90deg, #113768 0%, #067b9e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 123, 158, 0.4);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* ===========================
   COMPLETED PROJECTS SECTION
   =========================== */

.completed-projects-section {
  background: #ffffff;
  padding: 100px 40px;
  border-bottom: 1px solid #e0e0e0;
}

.completed-projects-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 200;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 10px;
  text-transform: uppercase;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid #113768;
  border-radius: 50%;
  background: transparent;
  color: #113768;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: #113768;
  color: #ffffff;
  transform: translateX(5px);
}

.nav-arrow i {
  font-size: 1.2rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.project-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 15px;
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
}

.project-item:hover .project-image-wrapper img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-name {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

/* ===========================
   THREE-BOX SYSTEM SECTION
   =========================== */

.three-box-section {
  background: #fafafa;
  padding: 120px 40px;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
}

.three-box-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.info-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #ffffff;
}

.box-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-bottom: 30px;
  background: #f5f5f5;
}

.box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.info-box:hover .box-image img {
  transform: scale(1.05);
}

.box-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #113768;
  margin: 0 0 20px 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.box-description {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 28px 0;
  line-height: 1.7;
  font-weight: 400;
  text-align: justify;
}

.box-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.box-list li {
  font-size: 0.95rem;
  color: #555;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  padding-left: 20px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.box-list li:last-child {
  border-bottom: none;
}

.box-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #067b9e;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ===========================
   OUR DESIGNS SHOWCASE - ALTERNATIVE STYLE
   =========================== */

.designs-showcase-section {
  background: #ffffff;
  padding: 120px 40px;
  border-bottom: 1px solid #e0e0e0;
}

.designs-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
}

.designs-header {
  margin-bottom: 60px;
}

.designs-title {
  font-size: 1.8rem;
  font-weight: 200;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  letter-spacing: 10px;
  text-transform: uppercase;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.designs-divider {
  width: 80px;
  height: 2px;
  background: #113768;
  margin: 0;
}

/* Split Layout: Large Left + Grid Right */
.designs-split-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.featured-design {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #f5f5f5;
}

.featured-design img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featured-design:hover img {
  transform: scale(1.02);
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-design:hover .featured-overlay {
  opacity: 1;
}

.featured-label {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Grid Column */
.designs-grid-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.design-small-item {
  height: 285px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.design-small-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.design-small-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.95);
}

/* Bottom Row */
.designs-bottom-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.bottom-design-item {
  height: 350px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.bottom-design-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bottom-design-item:hover img {
  transform: scale(1.03);
}

/* ===========================
   ALTERNATING FULL-WIDTH HIGHLIGHT SECTIONS
   =========================== */

.highlight-section {
  padding: 100px 40px;
  background: #ffffff;
}

.highlight-section:nth-child(even) {
  background: #fafafa;
}

.highlight-container {
  max-width: 1400px;
  margin: 0 auto;
}

.highlight-heading {
  font-size: 2.2rem;
  font-weight: 300;
  color: #222;
  text-align: center;
  margin: 0 0 20px 0;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.highlight-divider {
  width: 60px;
  height: 1px;
  background: #ccc;
  margin: 0 auto 60px auto;
}

/* Dual Image Banner */
.dual-image-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.banner-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  position: relative;
  cursor: pointer;
}

.banner-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.banner-image:hover::before {
  opacity: 1;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.banner-image:hover img {
  transform: scale(1.03);
}

/* Triple Image Strip */
.triple-image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.strip-image {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  position: relative;
  cursor: pointer;
}

.strip-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.strip-image:hover::before {
  opacity: 1;
}

.strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.strip-image:hover img {
  transform: scale(1.03);
}

/* Quad Image Grid */
.quad-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.grid-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  position: relative;
  cursor: pointer;
}

.grid-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.grid-image:hover::before {
  opacity: 1;
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.grid-image:hover img {
  transform: scale(1.03);
}

/* ===========================
   CALL TO ACTION SECTION
   =========================== */

.cta-section {
  background: linear-gradient(180deg, #113768 0%, #0a2847 100%);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #067b9e;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding: 70px 50px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
}

.cta-heading {
  font-size: 2.4rem;
  font-weight: 200;
  color: #ffffff;
  margin: 0 0 45px 0;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.cta-button {
  display: inline-block;
  padding: 18px 65px;
  background: #ffffff;
  color: #113768;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: 'Inter', sans-serif;
}

.cta-button:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  border-color: #ffffff;
}

/* ===========================
   RESPONSIVE MEDIA QUERIES
   =========================== */

/* Tablet Landscape - 1024px and below */
@media (max-width: 1024px) {
  .floating-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
  
  .hero-minimal-content h1 {
    font-size: 3rem;
    letter-spacing: 6px;
  }
  
  .floating-grid-section {
    padding: 60px 35px;
  }
  
  .highlight-section {
    padding: 80px 35px;
  }
  
  .highlight-heading {
    font-size: 2rem;
    letter-spacing: 5px;
  }
}

/* Tablet Portrait - 768px and below */
@media (max-width: 768px) {
  .hero-section-minimal {
    padding: 90px 20px;
  }
  
  .hero-minimal-content h1 {
    font-size: 2.5rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
  }
  
  .hero-minimal-content p {
    font-size: 0.95rem;
  }
  
  .completed-projects-section {
    padding: 50px 25px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .project-image-wrapper {
    height: 350px;
  }
  
  .section-title {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }
  
  .nav-arrow {
    width: 45px;
    height: 45px;
  }
  
  .nav-arrow i {
    font-size: 1rem;
  }
  
  .three-box-section {
    padding: 70px 25px;
  }
  
  .three-box-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .box-image {
    height: 240px;
    margin-bottom: 24px;
  }
  
  .designs-showcase-section {
    padding: 70px 25px;
  }
  
  .designs-header {
    margin-bottom: 40px;
  }
  
  .designs-title {
    font-size: 1.6rem;
    letter-spacing: 6px;
  }
  
  .designs-split-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .featured-design {
    height: 400px;
  }
  
  .designs-grid-column {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .design-small-item {
    height: 200px;
  }
  
  .designs-bottom-row {
    gap: 25px;
  }
  
  .bottom-design-item {
    height: 280px;
  }
  
  .cta-section {
    padding: 70px 25px;
  }
  
  .cta-container {
    padding: 50px 30px;
  }
  
  .cta-heading {
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
  }
  
  .cta-button {
    padding: 16px 50px;
    font-size: 1rem;
    letter-spacing: 2px;
  }
  
  .highlight-section {
    padding: 60px 25px;
  }
  
  .highlight-heading {
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin-bottom: 16px;
  }
  
  .dual-image-banner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .banner-image {
    height: 350px;
  }
  
  .triple-image-strip {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .strip-image {
    height: 320px;
  }
  
  .quad-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .grid-image {
    height: 280px;
  }
  
  .footer .container {
    padding: 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-col.company-info,
  .footer-col.services,
  .footer-col.contact-form {
    grid-column: 1;
  }
  
  .footer-nav {
    gap: 24px;
  }
  
  .footer-nav a {
    font-size: 0.95rem;
  }
}

/* Mobile - 600px and below */
@media (max-width: 600px) {
  .hero-section-minimal {
    padding: 70px 16px;
  }
  
  .hero-minimal-content h1 {
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 16px;
  }
  
  .hero-minimal-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .completed-projects-section {
    padding: 40px 20px;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-title {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
  
  .nav-arrow {
    width: 40px;
    height: 40px;
  }
  
  .nav-arrow i {
    font-size: 0.9rem;
  }
  
  .projects-grid {
    gap: 20px;
  }
  
  .project-image-wrapper {
    height: 280px;
  }
  
  .project-overlay {
    padding: 20px;
  }
  
  .project-name {
    font-size: 0.95rem;
  }
  
  .three-box-section {
    padding: 50px 20px;
  }
  
  .three-box-container {
    gap: 40px;
  }
  
  .box-image {
    height: 220px;
    margin-bottom: 20px;
  }
  
  .box-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .box-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .box-list li {
    font-size: 0.9rem;
    padding: 10px 0 10px 18px;
  }
  
  .designs-showcase-section {
    padding: 50px 20px;
  }
  
  .designs-header {
    margin-bottom: 30px;
  }
  
  .designs-title {
    font-size: 1.3rem;
    letter-spacing: 4px;
  }
  
  .designs-divider {
    width: 60px;
  }
  
  .designs-split-layout {
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .featured-design {
    height: 300px;
  }
  
  .designs-grid-column {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .design-small-item {
    height: 220px;
  }
  
  .designs-bottom-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bottom-design-item {
    height: 240px;
  }
  
  .highlight-section {
    padding: 50px 20px;
  }
  
  .highlight-heading {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }
  
  .highlight-divider {
    width: 50px;
    margin-bottom: 50px;
  }
  
  .dual-image-banner,
  .triple-image-strip {
    gap: 25px;
  }
  
  .banner-image {
    height: 280px;
    border-radius: 6px;
  }
  
  .strip-image {
    height: 260px;
    border-radius: 6px;
  }
  
  .quad-image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .grid-image {
    height: 250px;
    border-radius: 6px;
  }
  
  .cta-section {
    padding: 50px 20px;
  }
  
  .cta-container {
    padding: 40px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .cta-heading {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 1.4;
  }
  
  .cta-button {
    padding: 14px 40px;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }
  
  .footer {
    padding: 50px 0 0 0;
  }
  
  .footer .container {
    padding: 0 20px;
  }
  
  .footer-links {
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-nav a {
    font-size: 0.9rem;
  }
  
  .footer-content {
    gap: 35px;
    margin-bottom: 40px;
  }
  
  .footer-logo {
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
  }
  
  .footer-logo .logo-main {
    font-size: 1.2rem;
  }
  
  .footer-logo .logo-sub {
    font-size: 0.85rem;
  }
  
  .company-description {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .footer-col.services h3,
  .footer-col.contact-form h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }
  
  .footer-col.services ul li {
    margin-bottom: 12px;
  }
  
  .footer-col.services ul li a {
    font-size: 0.9rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  #contactForm input,
  #contactForm textarea {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  #contactForm textarea {
    min-height: 90px;
  }
  
  .submit-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  .hero-section-minimal {
    padding: 60px 12px;
  }
  
  .hero-minimal-content h1 {
    font-size: 1.75rem;
    letter-spacing: 3px;
  }
  
  .hero-minimal-content p {
    font-size: 0.85rem;
  }
  
  .floating-grid-section {
    padding: 35px 16px;
  }
  
  .floating-grid-container {
    gap: 30px;
  }
  
  .floating-card {
    border-radius: 10px;
  }
  
  .floating-card::after {
    font-size: 1.3rem;
    top: 16px;
    right: 16px;
  }
  
  .floating-image {
    height: 220px;
  }
  
  .floating-content {
    padding: 14px;
  }
  
  .floating-title {
    font-size: 1rem;
  }
  
  .floating-meta {
    font-size: 0.75rem;
  }
  
  .floating-see-more {
    font-size: 0.8rem;
  }
  
  .highlight-section {
    padding: 40px 16px;
  }
  
  .highlight-heading {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }
  
  .highlight-divider {
    width: 40px;
    margin-bottom: 40px;
  }
  
  .banner-image {
    height: 240px;
  }
  
  .strip-image {
    height: 220px;
  }
  
  .grid-image {
    height: 220px;
  }
  
  .cta-section {
    padding: 40px 16px;
  }
  
  .cta-container {
    padding: 35px 20px;
  }
  
  .cta-heading {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
  }
  
  .cta-button {
    padding: 12px 35px;
    font-size: 0.85rem;
  }
  
  .footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
  
  .footer-logo .logo-main {
    font-size: 1.1rem;
  }
  
  .footer-logo .logo-sub {
    font-size: 0.8rem;
  }
  
  .footer-col.services h3,
  .footer-col.contact-form h3 {
    font-size: 1.05rem;
  }
  
  .footer-col.services ul li a {
    font-size: 0.85rem;
  }
  
  #contactForm input,
  #contactForm textarea {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  
  .submit-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
  .hero-minimal-content h1 {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
  
  .hero-minimal-content p {
    font-size: 0.8rem;
  }
  
  .floating-title {
    font-size: 0.95rem;
  }
  
  .highlight-heading {
    font-size: 1.2rem;
  }
  
  .cta-heading {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  
  .cta-button {
    padding: 10px 30px;
    font-size: 0.8rem;
  }
}
