/* ==========================
   RESET
========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* ==========================
   HEADER
========================== */

header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo img {
  height: 90px;
  display: block;
}

/* ==========================
   NAVIGATION
========================== */

nav ul {
  display: flex;
  align-items: center;
  gap: 45px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #555;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: #0d3b66;
  transform: translateY(-2px);
}

nav ul li a.active {
  color: #0d3b66;
}

nav ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 4px;
  background: #c62828;
  border-radius: 10px;
}

/* ==========================
   HAMBURGER
========================== */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 10px;
  transition: 0.3s ease;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    background: #ffffff;
    transition: 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 25px;
    padding: 30px 0;
  }

  nav ul li a {
    font-size: 1.3rem;
  }

  .logo img {
    height: 70px;
  }
}

/* ==========================
   HERO SLIDER
========================== */

.hero-slider {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.overlay {
  position: absolute;
  left: 8%;
  bottom: 12%;
  z-index: 2;
}

.overlay h1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Arrows */

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px 18px;
  transition: 0.3s;
}

.prev:hover,
.next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

/* Responsive */

@media (max-width: 991px) {
  .hero-slider {
    height: 65vh;
  }

  .overlay h1 {
    font-size: 2.5rem;
  }

  .prev,
  .next {
    font-size: 2rem;
  }
}

/* ==========================
   WHAT WE DO
========================== */

.what-we-do {
  padding: 100px 0;
  background: #f8f8f8;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 3.5rem;
  color: #111;
  margin-bottom: 15px;
}

.title-line {
  width: 120px;
  height: 4px;
  background: #c62828;
  margin: auto;
}

.intro-text {
  max-width: 1000px;
  margin: 0 auto 70px;
  text-align: center;
}

.intro-text p {
  font-size: 1.35rem;
  line-height: 2;
  color: #444;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
  margin-top: 70px;
}

.what-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.what-item i {
  color: #c62828;
  font-size: 1.8rem;
  margin-top: 5px;
}

.what-item p {
  color: #444;
  font-size: 1.15rem;
  line-height: 1.9;
  text-align: justify;
}

.what-item span {
  color: #c62828;
  font-weight: 600;
}

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
  .what-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-text p {
    font-size: 1.1rem;
  }
}

/* ==========================
   FEATURE BOXES
========================== */

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 90%;
  max-width: 1400px;
  margin: 80px auto;
}

.feature-card {
  position: relative;
  overflow: hidden;
  height: 450px;
  cursor: pointer;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-overlay h2 {
  color: #c62828;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}

.feature-card:hover img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .feature-boxes {
    grid-template-columns: 1fr;
  }

  .feature-card {
    height: 300px;
  }

  .feature-overlay h2 {
    font-size: 2rem;
  }
}

/* ==========================
   WHAT WE STAND FOR
========================== */

.stand-for {
  padding: 120px 0;
  background: #f8f8f8;
}

.stand-content {
  max-width: 1100px;
  margin: 70px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.stand-content i {
  color: #c62828;
  font-size: 2rem;
  margin-top: 8px;
  flex-shrink: 0;
}

.stand-content p {
  font-size: 1.4rem;
  line-height: 2;
  color: #444;
  text-align: justify;
}

.stand-content p span {
  color: #c62828;
  font-weight: 600;
}

@media (max-width: 991px) {
  .stand-content {
    gap: 12px;
  }

  .stand-content i {
    font-size: 1.4rem;
    margin-top: 6px;
  }

  .stand-content p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

/* ==========================
   OUR SERVICES
========================== */

.services-section {
  position: relative;
  padding: 120px 0;
  background: url("../img/services-bg.jpeg") center center/cover no-repeat;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-title {
  text-align: center;
  margin-bottom: 90px;
}

.services-title h2 {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: #ffffff;
  padding: 80px 30px 40px;
  text-align: center;
  position: relative;
  transition: 0.4s ease;
  min-height: 360px;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: #c62828;
  border-radius: 8px;

  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  justify-content: center;
  align-items: center;

  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: translateX(-50%) rotate(10deg) scale(1.1);
}

.service-icon i {
  color: #fff;
  font-size: 2.2rem;
}

.service-card h3 {
  color: #1f3d5a;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.service-card p {
  color: #555;
  line-height: 1.9;
  font-size: 1.05rem;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .services-title h2 {
    font-size: 2.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .service-card {
    min-height: auto;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 576px) {
  .services-section {
    padding: 80px 0;
  }

  .services-title h2 {
    font-size: 2.2rem;
  }

  .service-icon {
    width: 75px;
    height: 75px;
    top: -38px;
  }

  .service-icon i {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 65px 20px 30px;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  .service-card p {
    font-size: 1rem;
  }
}

/* ==========================
   FOOTER
========================== */

footer {
  background: #000;
  color: #fff;
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.footer-logo img {
  max-width: 260px;
}

.footer-center,
.footer-right {
  text-align: center;
}

.footer-icon {
  width: 80px;
  height: 80px;
  background: #c62828;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 25px;
}

.footer-icon i {
  color: #fff;
  font-size: 1.8rem;
}

.footer-center p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 35px;
  text-align: center;
}

.footer-contact-block p {
  color: #ccc;
  margin-top: 15px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    max-width: 220px;
  }

  .footer-right {
    gap: 50px;
  }
}

/* ==========================
   CONTACT HERO
========================== */

.contact-hero {
  position: relative;
  height: 450px;
  background: url("../img/contact-banner.jpeg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero-content h1 {
  color: #fff;
  font-size: 4.5rem;
  margin-bottom: 15px;
}

.contact-hero-content p {
  color: #fff;
  font-size: 1.4rem;
}

/* ==========================
   CONTACT INFO
========================== */

.contact-info {
  padding: 100px 0;
  background: #f8f8f8;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 70px;
}

.contact-card {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  border-top: 5px solid #c62828;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-icon {
  width: 90px;
  height: 90px;
  background: #c62828;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
}

.contact-icon i {
  color: #fff;
  font-size: 2rem;
}

.contact-card h3 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 20px;
}

.contact-card p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ==========================
   CONTACT FORM
========================== */

.contact-form-section {
  padding: 100px 0;
  background: #ffffff;
}

.contact-form {
  max-width: 1000px;
  margin: 60px auto 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #ddd;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c62828;
}

.contact-form textarea {
  resize: none;
  margin-bottom: 25px;
}

.contact-form button {
  background: #c62828;
  color: #fff;
  border: none;
  padding: 16px 35px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #a71d1d;
}

.success-message {
  display: none;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .contact-hero {
    height: 350px;
  }

  .contact-hero-content h1 {
    font-size: 3rem;
  }

  .contact-hero-content p {
    font-size: 1.2rem;
  }

  .contact-info,
  .contact-form-section {
    padding: 80px 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }

  .contact-card {
    padding: 35px 25px;
  }

  .contact-icon {
    width: 75px;
    height: 75px;
  }

  .contact-icon i {
    font-size: 1.6rem;
  }

  .contact-card h3 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    height: 280px;
  }

  .contact-hero-content h1 {
    font-size: 2.3rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
  }

  .contact-card {
    padding: 25px 20px;
  }

  .contact-card p {
    font-size: 0.95rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 15px;
    font-size: 0.95rem;
  }

  .contact-form button {
    width: 100%;
  }
}

/* ==========================
   COMPANY HERO
========================== */

.company-hero {
  position: relative;
  height: 420px;

  background: url("../img/company-banner.jpeg") center center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.company-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.company-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.company-hero-content h1 {
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.company-hero-content p {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 8px;
  text-transform: uppercase;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .company-hero {
    height: 350px;
  }

  .company-hero-content h1 {
    font-size: 3.5rem;
  }

  .company-hero-content p {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}

@media (max-width: 576px) {
  .company-hero {
    height: 280px;
  }

  .company-hero-content h1 {
    font-size: 2.4rem;
  }

  .company-hero-content p {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
}

/* ==========================
   MISSION
========================== */

.company-mission {
  padding: 120px 0;
  background: #f8f8f8;
}

.mission-content {
  max-width: 1100px;
  margin: 60px auto 0;
}

.mission-content p {
  font-size: 1.35rem;
  line-height: 2;
  color: #444;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}
.mission-content strong {
  font-weight: 700;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .company-mission {
    padding: 90px 0;
  }

  .mission-content p {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .mission-content p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

/* ==========================
   OUR VALUES
========================== */

.company-values {
  padding: 120px 0;
  background: #ffffff;
}

.values-intro {
  max-width: 1200px;
  margin: 60px auto 0;
}

.values-intro p {
  font-size: 1.25rem;
  line-height: 2;
  color: #444;
  text-align: center;
}

.values-intro strong {
  font-weight: 700;
  color: #333;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .company-values {
    padding: 90px 0;
  }

  .values-intro p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .values-intro p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ==========================
   VALUES ACCORDION
========================== */

.values-accordion {
  padding: 100px 0;
  background: #f8f8f8;
}

.accordion-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #c62828;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;

  position: relative;

  padding: 25px 60px;

  font-size: 2rem;
  font-weight: 600;
  color: #c62828;
  cursor: pointer;
  text-transform: uppercase;

  text-align: center;
}

.accordion-header i {
  font-size: 1.4rem;
}

.accordion-content {
  padding: 0 15px 25px;
  color: #555;
  line-height: 2;
  font-size: 1.1rem;
}

.accordion-item:not(.active) .accordion-content {
  display: none;
}

@media (max-width: 768px) {
  .accordion-header {
    font-size: 1.2rem;
  }

  .accordion-content {
    font-size: 1rem;
  }
}

/* ==========================
   CTA SECTION
========================== */

.cta-section {
  background: #c62828;
  padding: 70px 0;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-content h2 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 400;
}

.cta-content h2 span {
  font-weight: 700;
}

.cta-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;

  padding: 16px 35px;
  min-width: 180px;

  text-align: center;
  white-space: nowrap;

  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;

  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #c62828;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-btn {
    min-width: 220px;
    margin-top: 10px;
  }
}

/* ==========================
   SERVICES HERO
========================== */

.services-hero {
  position: relative;
  height: 430px;

  background: url("../img/services-banner.jpeg") center center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.services-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.services-hero-content h1 {
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.services-hero-content p {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 8px;
}

@media (max-width: 991px) {
  .services-hero {
    height: 350px;
  }

  .services-hero-content h1 {
    font-size: 3rem;
  }

  .services-hero-content p {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}

@media (max-width: 576px) {
  .services-hero {
    height: 280px;
  }

  .services-hero-content h1 {
    font-size: 2.2rem;
  }

  .services-hero-content p {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
}

.service-detail {
  padding: 120px 0;
  background: #f8f8f8;
}

.service-title h2 {
  text-align: center;
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 60px;
  color: #222;
}

.service-intro {
  max-width: 950px;
  margin: auto;
}

.service-intro p {
  font-size: 1.25rem;
  line-height: 2;
  color: #444;
  margin-bottom: 25px;
  text-align: justify;
}

.service-divider {
  width: 180px;
  height: 2px;
  background: #c62828;
  margin: 60px auto;
}

.service-detail:nth-of-type(even) {
  background: #ffffff;
}

.service-subsection h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-subsection h3 i {
  color: #c62828;
  font-size: 1.2rem;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .service-detail {
    padding: 80px 0;
  }

  .service-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .service-divider {
    width: 120px;
    margin: 40px auto;
  }
}

@media (max-width: 576px) {
  .service-detail {
    padding: 60px 0;
  }

  .service-intro {
    padding: 0 10px;
  }

  .service-intro p {
    font-size: 1rem;
    text-align: left;
  }

  .service-divider {
    width: 80px;
  }
}

/* ==========================
   SERVICE SUBSECTIONS
========================== */

.service-subsection {
  max-width: 1100px;
  margin: 70px auto;
}

.service-subsection h3 {
  color: #c62828;
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-subsection p {
  color: #444;
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 25px;
}

.service-subsection ul {
  padding-left: 25px;
}

.service-subsection li {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.8;
  font-size: 1.1rem;
}

.service-subsection li::marker {
  color: #c62828;
}

@media (max-width: 576px) {
  .service-subsection h3 {
    font-size: 1.5rem;
  }

  .service-subsection p,
  .service-subsection li {
    font-size: 1rem;
  }
}
