:root {
    --primary-blue: #123A7A;
    --navy-dark: #0B1F3B;
    --gold-main: #D4A017;
    --gold-gradient: linear-gradient(135deg, #D4A017, #F5C542);
    --light-bg: #F8FAFC;
    --text-dark: #1E293B;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

a { text-decoration: none;}
/* ===== HEADER ===== */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  z-index: 1000;
}

.header.scrolled {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

/* Logo */
.logo img {
  height: 55px;
  display: block;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav a {
  text-decoration: none;
  color: #0B1F3B;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #D4A017;
  transition: 0.3s;
}

.nav a:hover {
  color: #123A7A;
}

.nav a:hover::after {
  width: 100%;
}

/* CTA Button */
/* .cta-btn {
  padding: 11px 26px;
  background: linear-gradient(135deg,#D4A017,#F5C542);
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(212,160,23,0.35);
} */

.cta-btn {
    display: inline-block;
    padding: 13px 32px;
    background: linear-gradient(135deg,#D4A017,#F5C542);
    border-radius: 40px;
    text-decoration: none;
    color: #0B1F3B;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(212,160,23,0.45);
}

/* Right Side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */

@media(max-width: 992px){

  .nav {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 30px 0;
    gap: 20px;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .nav.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .cta-btn {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
/* ================= HERO SECTION ================= */

.hero-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85") center/cover no-repeat;
  padding: 120px 0;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(7,20,39,0.95),rgba(11,31,59,0.92));
}

.hero-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  gap: 60px;
}

/* LEFT 60% */

.hero-left {
  flex: 0 0 60%;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-left span {
  color: #D4A017;
}

.hero-left p {
  color: #cbd5e1;
  margin-bottom: 25px;
  font-size: 16px;
}

.hero-points {
  list-style: none;
  padding: 0;
}

.hero-points li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* RIGHT 40% FORM */

.hero-form {
  flex: 0 0 40%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-form h3 {
  text-align: center;
  color: #D4A017;
  margin-bottom: 30px;
}

/* INPUT GROUP */

.input-group {
  position: relative;
  margin-bottom: 28px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 10px 5px;
  font-size: 15px;
  color: #ffffff;
  outline: none;
  transition: 0.3s;
  font-family: inherit;
}

/* Remove White Autofill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px #0b1f3b inset !important;
}

/* Floating Labels */

.input-group label {
  position: absolute;
  left: 5px;
  top: 10px;
  color: #cbd5e1;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-bottom: 1px solid #D4A017;
}

.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -12px;
  font-size: 12px;
  color: #D4A017;
}

/* SELECT FIX */

.select-group {
  position: relative;
}

.select-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 30px;
  cursor: pointer;
}

.select-group::after {
  content: "▾";
  position: absolute;
  right: 5px;
  top: 12px;
  font-size: 14px;
  color: #D4A017;
  pointer-events: none;
}

.select-group select:valid + label,
.select-group select:focus + label {
  top: -12px;
  font-size: 12px;
  color: #D4A017;
}

.select-group select option {
  background: #0B1F3B;
  color: #ffffff;
}

/* BUTTON */

.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg,#D4A017,#F5C542);
  color: #0B1F3B;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(212,160,23,0.4);
}

/* RESPONSIVE */

@media(max-width:992px){
  .hero-wrapper{
    flex-direction: column;
  }

  .hero-left,
  .hero-form{
    flex: 100%;
  }

  .hero-left h1{
    font-size: 32px;
  }
}


/* ===== WHITE ABOUT SECTION ===== */

.about-section-white {
  padding: 120px 0;
  background: #ffffff;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* LEFT CONTENT */

.about-content {
  flex: 1;
}

.section-tag {
  display: inline-block;
  background: rgba(18,58,122,0.08);
  color: #123A7A;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: 600;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #0B1F3B;
}

.about-content h2 span {
  background: linear-gradient(135deg,#D4A017,#F5C542);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content p {
  color: #475569;
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 15px;
}

/* FEATURES */

.about-features {
  margin-top: 25px;
  display: grid;
  gap: 12px;
}

.about-features div {
  background: #f8fafc;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  border-left: 3px solid #D4A017;
}

/* IMAGE */

.about-image {
  position: relative;
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: linear-gradient(135deg,#123A7A,#0B1F3B);
  color: #fff;
  padding: 14px 24px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */

@media(max-width: 992px){
  .about-wrapper {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .experience-badge {
    left: 20px;
  }
}


/* ===== CREATIVE SERVICES SECTION ===== */

.services-dark-creative {
  padding: 120px 0;
  background: linear-gradient(135deg,#071427,#0B1F3B);
  color: #fff;
}

.services-wrapper {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* LEFT SIDE */

.services-left {
  flex: 1;
}

.services-left .tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(212,160,23,0.15);
  color: #D4A017;
  font-size: 13px;
  margin-bottom: 15px;
}

.services-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.services-left p {
  color: #cbd5e1;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* RIGHT SIDE GRID */

.services-right {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 25px;
}

/* CARDS */

.service-card {
  background: rgba(255,255,255,0.05);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.4s ease;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);

  opacity: 0;
  transform: translateY(40px);
}

.service-card span {
  font-size: 38px;
  color: #D4A017;
  margin-bottom: 12px;
  display: inline-block;
}

.service-card h4 {
  font-size: 15px;
  font-weight: 500;
}

/* Hover */

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(212,160,23,0.4);
}

/* Highlight */

.highlight-card {
  background: linear-gradient(135deg,#D4A017,#F5C542);
  color: #fff;
}

.highlight-card span {
  color: #fff;
}

/* Animation Active */

.service-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* Responsive */

@media(max-width:992px){
  .services-wrapper {
    flex-direction: column;
  }
}


/* ===== VISION & MISSION COMBINED ===== */

.vm-section {
  padding: 120px 0;
  background: #ffffff;
}

.vm-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

.vm-wrapper.reverse {
  flex-direction: row-reverse;
  background: #f8fafc;
  border-radius: 20px;
}

/* IMAGE */

.vm-image {
  flex: 1;
}

.vm-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

.vm-image img:hover {
  transform: scale(1.03);
}

/* CONTENT */

.vm-content {
  flex: 1;
}

.vm-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg,#123A7A,#0B1F3B);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.vm-icon span {
  font-size: 34px;
  color: #D4A017;
}

.vm-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #0B1F3B;
  letter-spacing: 1px;
}

.vm-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

/* RESPONSIVE */

@media(max-width: 992px){
  .vm-wrapper,
  .vm-wrapper.reverse {
    flex-direction: column;
    background: transparent;
    padding: 40px 20px;
  }

  .vm-content h2 {
    font-size: 24px;
  }
}


/* ===== WHY CHOOSE US NEW DESIGN ===== */

.why-new-section {
  padding: 120px 0;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.why-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
}

/* LEFT SIDE */

.why-left {
  flex: 1;
}

.why-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(18,58,122,0.08);
  color: #123A7A;
  font-size: 13px;
  margin-bottom: 15px;
  font-weight: 600;
}

.why-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0B1F3B;
}

.why-left h2 span {
  background: linear-gradient(135deg,#D4A017,#F5C542);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-desc {
  font-weight: 600;
  color: #123A7A;
  margin-bottom: 15px;
}

.why-left p {
  color: #475569;
  line-height: 1.8;
}

/* RIGHT SIDE */

.why-right {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

/* CARD */

.why-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  border-top: 3px solid transparent;
}

.why-card:hover {
  transform: translateY(-6px);
  border-top: 3px solid #D4A017;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg,#123A7A,#0B1F3B);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.why-icon span {
  font-size: 28px;
  color: #D4A017;
}

.why-card h4 {
  margin-bottom: 10px;
  color: #0B1F3B;
  font-size: 16px;
}

.why-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Highlight Card */

.why-card.highlight {
  background: linear-gradient(135deg,#D4A017,#F5C542);
  color: #fff;
}

.why-card.highlight h4,
.why-card.highlight p {
  color: #fff;
}

.why-card.highlight .why-icon {
  background: rgba(255,255,255,0.2);
}

.why-card.highlight .why-icon span {
  color: #fff;
}

/* Responsive */

@media(max-width:992px){
  .why-wrapper {
    flex-direction: column;
  }

  .why-left h2 {
    font-size: 28px;
  }
}

.partners-section {
  padding: 120px 0;
  background: #ffffff;
}

.partners-heading {
  text-align: center;
  margin-bottom: 60px;
}

.partners-heading .tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(18,58,122,0.08);
  color: #123A7A;
  font-size: 13px;
  margin-bottom: 15px;
  font-weight: 600;
}

.partners-heading h2 {
  font-size: 32px;
  color: #0B1F3B;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
  gap: 30px;
  align-items: center;
}

.partner-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.partner-card img {
  max-width: 200px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.4s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}


/* ===== PRODUCTS SECTION ===== */

.products-section {
  padding: 120px 0;
  background: #f9fbff;
}

.section-heading-center h2 {
  font-size: 36px;
  font-weight: 600;
  color: #0B1F3B;
}

.product-category {
  margin: 70px 0 30px;
  font-size: 22px;
  font-weight: 600;
  color: #123A7A;
  position: relative;
  padding-left: 15px;
}

.product-category::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg,#D4A017,#F5C542);
  border-radius: 2px;
}

/* GRID */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 25px;
}

/* CARD DESIGN */

.product-card {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ICON CIRCLE */

.product-card span {
  font-size: 32px;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg,#1976d2,#0B1F3B);
  color: #ffffff;
  transition: 0.3s ease;
}

/* TEXT */

.product-card p {
  font-size: 14px;
  font-weight: 500;
  color: #0B1F3B;
  line-height: 1.4;
}

/* HOVER EFFECT */

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  border-color: rgba(212,160,23,0.3);
}

.product-card:hover span {
  background: linear-gradient(135deg,#D4A017,#F5C542);
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width:768px){
  .products-grid {
    grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  }
}

.contact-section {
  padding: 120px 0;
  background: #f8fafc;
}

.contact-wrapper {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  align-items: stretch;
}

/* LEFT SIDE */

.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 36px;
  color: #0B1F3B;
  margin-bottom: 15px;
}

.contact-sub {
  color: #64748b;
  margin-bottom: 35px;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-item span {
  font-size: 30px;
  color: #D4A017;
}

.contact-item h4 {
  margin-bottom: 5px;
  color: #123A7A;
}

.contact-item p {
  color: #475569;
  font-size: 15px;
}

.contact-item a {
  text-decoration: none;
  color: #475569;
}

.contact-item a:hover {
  color: #D4A017;
}

/* RIGHT MAP */

.contact-right {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  min-height: 400px;
}

/* RESPONSIVE */

@media(max-width:992px){
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-right {
    min-height: 350px;
  }
}

/* ================= FOOTER ================= */

.footer-dark {
  background: #0B1F3B;
  color: #ffffff;
  padding-top: 80px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-left h3 {
  margin-bottom: 15px;
}

.footer-left p {
  color: #cbd5e1;
  max-width: 400px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: #D4A017;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

/* ================= DRAWER ================= */

.drawer {
  position: fixed;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  transition: 0.5s ease;
  display: flex;
  align-items: flex-end;
  z-index: 9999;
}

.drawer.active {
  bottom: 0;
}

.drawer-content {
  background: #ffffff;
  width: 100%;
  max-height: 85%;
  border-radius: 25px 25px 0 0;
  padding: 40px;
  overflow-y: auto;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.drawer-header h2 {
  color: #0B1F3B;
}

.close-btn {
  font-size: 32px;
  cursor: pointer;
  color: #D4A017;
  transition: 0.3s;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.drawer-body h4 {
  margin-top: 20px;
  color: #123A7A;
}

.drawer-body p {
  margin-bottom: 10px;
  color: #475569;
  line-height: 1.7;
}

/* RESPONSIVE */

@media(max-width:768px){
  .footer-wrapper {
    flex-direction: column;
  }
}


/* SOCIAL ICONS */

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  transition: 0.3s ease;
  font-size: 16px;
}

/* Hover Effects */

.social-icons a:hover {
  transform: translateY(-5px);
  background: #D4A017;
  color: #0B1F3B;
  box-shadow: 0 10px 25px rgba(212,160,23,0.4);
}


/* ================= FOOTER MODERN ================= */

.footer-modern {
  background: #071427;
  color: #ffffff;
  padding: 80px 0 0;
  position: relative;
}

/* Golden Top Line */
.footer-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg,#D4A017,#F5C542);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 50px;
}

/* Logo */

.footer-logo {
  font-size: 22px;
  margin-bottom: 15px;
  background: linear-gradient(135deg,#D4A017,#F5C542);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-about {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 14px;
}

/* Headings */

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #ffffff;
}

/* Links */

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #D4A017;
}

/* Contact list */

.contact-list li {
  color: #cbd5e1;
  line-height: 1.6;
}

/* Social */

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #D4A017;
  color: #071427;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212,160,23,0.4);
}

/* Bottom */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #94a3b8;
}

/* Responsive */

@media(max-width:768px){
  .footer-container {
    gap: 35px;
  }
}
