/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Alex+Brush&display=swap');

/* Style Tokens & Theme Colors */
:root {
  --bg-primary: #071A2C;       /* Primary Navy */
  --bg-secondary: #0E233A;     /* Secondary Navy */
  --color-gold: #C9A56A;       /* Premium Gold */
  --color-white: #FFFFFF;
  --bg-light: #F7F4EF;         /* Light Background Cream */
  --text-gray: #8C9AA9;        /* Text Gray */
  --text-dark: #2C353F;        /* Dark Charcoal for Light Sections */
  --border-light: rgba(201, 165, 106, 0.2);
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans-nav: 'Montserrat', sans-serif;
  --font-sans-body: 'Inter', sans-serif;
  --font-cursive: 'Alex Brush', cursive;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.45);
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans-body);
  background-color: var(--bg-primary);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Premium Scrollbar */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
body::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* FIXED HEADER (90px Height) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  background-color: rgba(7, 26, 44, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(201, 165, 106, 0.15);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(7, 26, 44, 0.98);
  height: 80px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-symbol {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  padding: 2px 10px;
  line-height: 1;
  letter-spacing: -2px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-item a {
  font-family: var(--font-sans-nav);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  opacity: 0.85;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-item a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.nav-item a:hover::after {
  width: 100%;
}

.nav-item.active a {
  color: var(--color-gold);
  opacity: 1;
}

.nav-item.active a::after {
  width: 100%;
}

/* Language selector */
.lang-selector {
  position: relative;
  cursor: pointer;
  font-family: var(--font-sans-nav);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid rgba(201, 165, 106, 0.4);
  color: var(--color-white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(201, 165, 106, 0.3);
  display: none;
  flex-direction: column;
  min-width: 80px;
  margin-top: 5px;
  box-shadow: var(--shadow-premium);
}

.lang-selector:hover .lang-dropdown {
  display: flex;
}

.lang-opt {
  padding: 8px 15px;
  text-align: center;
}

.lang-opt:hover {
  background-color: var(--color-gold);
  color: var(--bg-primary);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px 20px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('assets/skyline.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 15s ease-out;
}

.hero:hover .hero-bg {
  transform: scale(1.05);
}

.hero-portrait-layer {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 45%;
  max-width: 650px;
  height: 90%;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  will-change: transform;
}

.hero-portrait-layer img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(90deg, 
    rgba(7, 26, 44, 0.98) 0%, 
    rgba(7, 26, 44, 0.92) 40%, 
    rgba(7, 26, 44, 0.6) 70%, 
    rgba(7, 26, 44, 0.9) 100%);
  pointer-events: none;
}

.world-map-overlay {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 50%;
  height: 80%;
  z-index: 4;
  pointer-events: none;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.particle {
  position: absolute;
  background-color: rgba(201, 165, 106, 0.35);
  border-radius: 50%;
  pointer-events: none;
  animation: floatUp 8s infinite linear;
}

@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  50% { opacity: 0.8; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 5;
}

.hero-content {
  max-width: 650px;
  padding-right: 40px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 5px;
}

.hero-subtext {
  font-family: var(--font-sans-nav);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 30px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 20px 0;
}

.hero-diamond {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  transform: rotate(45deg);
  position: relative;
}

.hero-diamond::before, .hero-diamond::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: rgba(201, 165, 106, 0.5);
}

.hero-diamond::before { right: 12px; }
.hero-diamond::after { left: 12px; }

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 25px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}

/* Button */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 14px 35px;
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  font-family: var(--font-sans-nav);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  color: var(--bg-primary);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(201, 165, 106, 0.4);
}

.btn-gold:hover::before {
  left: 0;
}

/* FEATURE ICON STRIP */
.highlights-bar {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(201, 165, 106, 0.25);
  border-bottom: 1px solid rgba(201, 165, 106, 0.25);
  position: relative;
  z-index: 10;
}

.highlights-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.highlight-item {
  padding: 35px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(201, 165, 106, 0.2);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-item:hover {
  background-color: rgba(201, 165, 106, 0.05);
}

.highlight-icon {
  font-size: 1.8rem;
  color: var(--color-gold);
}

.highlight-title {
  font-family: var(--font-sans-nav);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.highlight-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-weight: 300;
}

/* ABOUT SECTION */
.about-sectors {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 100px 20px;
}

.about-sectors-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
}

/* About Column */
.about-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-label {
  font-family: var(--font-sans-nav);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 25px;
  display: block;
}

.centered-label {
  text-align: center;
  margin-bottom: 40px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 25px;
  opacity: 0.95;
}

.signature {
  font-family: var(--font-cursive);
  font-size: 3.5rem;
  color: var(--color-gold);
  margin-top: 15px;
  margin-bottom: 30px;
  align-self: flex-start;
}

.btn-about-me {
  align-self: flex-start;
}

/* Sectors Column - 2 rows of 4 columns */
.sectors-col {
  display: flex;
  flex-direction: column;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 10px;
}

.sector-item {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  padding: 30px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.01);
  transition: var(--transition-smooth);
  cursor: pointer;
  border-radius: 4px;
}

.sector-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(201, 165, 106, 0.15);
}

.sector-icon {
  font-size: 1.8rem;
  color: var(--color-gold);
}

.sector-name {
  font-family: var(--font-sans-nav);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.3;
}

/* FEATURED PROJECTS */
.projects {
  padding: 100px 20px;
  background-color: var(--bg-primary);
}

.projects-header {
  max-width: 1300px;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projects-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-white);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 10px;
}

.projects-nav {
  display: flex;
  gap: 10px;
}

.proj-nav-btn {
  background: none;
  border: 1px solid rgba(201, 165, 106, 0.4);
  color: var(--color-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.proj-nav-btn:hover {
  background-color: var(--color-gold);
  color: var(--bg-primary);
  border-color: transparent;
}

.projects-slider-container {
  max-width: 1300px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 10px 0;
}

.projects-slider-container::-webkit-scrollbar {
  display: none;
}

.projects-grid {
  display: flex;
  gap: 20px;
  width: max-content;
}

.project-card {
  position: relative;
  width: 280px;
  height: 380px;
  overflow: hidden;
  border: 1px solid rgba(201, 165, 106, 0.15);
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
}

.project-img-wrapper {
  width: 100%;
  height: 100%;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 26, 44, 0.95) 0%, rgba(7, 26, 44, 0.5) 50%, rgba(7, 26, 44, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px 15px;
  transition: var(--transition-smooth);
}

.project-country {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 5px;
}

.project-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-white);
  line-height: 1.3;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(201, 165, 106, 0.85) 0%, rgba(7, 26, 44, 0.7) 100%);
}

.project-card:hover .project-title {
  color: var(--bg-primary);
  font-weight: 700;
}

.project-card:hover .project-country {
  color: var(--color-white);
}

.view-all-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* INVESTMENT APPROACH */
.invest-approach {
  padding: 100px 20px;
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(201, 165, 106, 0.15);
}

.invest-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 60px;
  align-items: center;
}

.invest-left {
  max-width: 380px;
}

.invest-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 25px;
}

.invest-desc {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
  font-weight: 300;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.approach-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(201, 165, 106, 0.15);
  padding: 30px 20px;
  text-align: center;
  border-radius: 4px;
  transition: var(--transition-smooth);
  cursor: pointer;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.approach-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-premium);
}

.approach-icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.approach-headline {
  font-family: var(--font-sans-nav);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-white);
  line-height: 1.3;
}

.approach-text-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 300;
}



/* LATEST NEWS */
.news {
  padding: 100px 20px;
  background-color: var(--bg-primary);
}

.news-header {
  max-width: 1300px;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-white);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 10px;
}

.news-nav {
  display: flex;
  gap: 10px;
}

.news-nav-btn {
  background: none;
  border: 1px solid rgba(201, 165, 106, 0.4);
  color: var(--color-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.news-nav-btn:hover {
  background-color: var(--color-gold);
  color: var(--bg-primary);
  border-color: transparent;
}

.news-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.news-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(201, 165, 106, 0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
}

.news-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.news-card:hover .news-img-wrapper img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 25px 20px;
}

.news-date {
  font-family: var(--font-sans-nav);
  font-size: 0.7rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.news-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 12px;
  min-height: 52px;
}

.news-desc-text {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 48px;
}

.news-read-more {
  font-family: var(--font-sans-nav);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.news-read-more:hover {
  color: var(--color-white);
}

/* OUR PARTNERS */
.partners {
  padding: 100px 20px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.partners-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.partners-logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto 40px auto;
}

.partner-logo {
  filter: grayscale(1);
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.partners-subtext {
  font-size: 1rem;
  color: var(--text-dark);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-weight: 400;
}

.partners-btn-wrapper {
  display: flex;
  justify-content: center;
}

/* CALL TO ACTION */
.cta-section {
  position: relative;
  background-color: var(--bg-primary);
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(201, 165, 106, 0.15);
}

.cta-overlay-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 5;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  font-weight: 300;
}

/* FOOTER */
footer {
  background-color: var(--bg-primary);
  border-top: 1px solid rgba(201, 165, 106, 0.2);
  padding: 80px 20px 30px 20px;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 25px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(201, 165, 106, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background-color: var(--color-gold);
  color: var(--bg-primary);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-links-title {
  font-family: var(--font-sans-nav);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-links-list-single {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list-single li a {
  font-family: var(--font-sans-body);
  font-size: 0.85rem;
  color: var(--text-gray);
  transition: var(--transition-smooth);
}

.footer-links-list-single li a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.footer-contact-icon {
  color: var(--color-gold);
  font-size: 1rem;
}

.footer-contact-item a:hover {
  color: var(--color-gold);
}

/* Footer Newsletter */
.footer-newsletter {
  display: flex;
  flex-direction: column;
}

.newsletter-text {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(201, 165, 106, 0.25);
  border-radius: 4px;
  color: var(--color-white);
  font-family: var(--font-sans-body);
  font-size: 0.85rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.btn-subscribe {
  padding: 12px 0;
  background-color: var(--color-gold);
  border: none;
  color: var(--bg-primary);
  font-family: var(--font-sans-nav);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.btn-subscribe:hover {
  background-color: var(--color-white);
  box-shadow: 0 5px 15px rgba(201, 165, 106, 0.25);
}

/* Sub-footer copyright */
.sub-footer {
  border-top: 1px solid rgba(201, 165, 106, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.sub-footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-gray);
}

.sub-footer-links a:hover {
  color: var(--color-gold);
}

.sub-footer-links .divider {
  opacity: 0.3;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
  background-color: #20ba5a;
}

/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 26, 44, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background-color: var(--bg-secondary);
  border: 1px solid var(--color-gold);
  max-width: 750px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: var(--shadow-premium);
  z-index: 2001;
  animation: modalFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--color-white);
  transform: rotate(90deg);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(201, 165, 106, 0.2);
  padding-bottom: 10px;
}

.modal-body {
  font-family: var(--font-sans-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
}

.modal-body p {
  margin-bottom: 20px;
}

.modal-body ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: square;
}

.modal-body li {
  margin-bottom: 10px;
  color: var(--color-white);
}

.partner-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.partner-card {
  background-color: rgba(7, 26, 44, 0.5);
  border: 1px solid rgba(201, 165, 106, 0.2);
  padding: 20px;
  border-radius: 4px;
}

.partner-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.partner-address {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1200px) {
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .invest-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .invest-left {
    max-width: 100%;
    text-align: center;
  }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-col:nth-child(3) {
    border-right: none;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding: 130px 20px 420px 20px;
    justify-content: flex-start;
  }
  .hero-container {
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    padding-right: 0;
  }
  .hero-divider {
    justify-content: center;
  }
  .hero-portrait-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 400px;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .hero-portrait-layer img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }
  .highlights-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .highlight-item {
    border-right: 1px solid rgba(201, 165, 106, 0.2);
    border-bottom: 1px solid rgba(201, 165, 106, 0.2);
  }
  .highlight-item:nth-child(3), .highlight-item:nth-child(6) {
    border-right: none;
  }
  .about-sectors-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 110px 20px 320px 20px;
  }
  .hero-portrait-layer {
    height: 300px;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 50px 20px;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(201, 165, 106, 0.2);
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-item {
    width: 100%;
    text-align: center;
  }
  .nav-item a {
    font-size: 1.1rem;
    display: block;
    padding: 15px 0;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.8rem;
  }
  .highlights-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlight-item:nth-child(2), .highlight-item:nth-child(4) {
    border-right: none;
  }
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-col {
    border-right: none !important;
    border-bottom: 1px solid var(--border-light);
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .sub-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .highlights-container {
    grid-template-columns: 1fr;
  }
  .highlight-item {
    border-right: none !important;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .numbers-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   COMPLETED PROJECTS BANNER (Ana Sayfa)
   ===================================================== */
.completed-projects-banner {
  position: relative;
  background: linear-gradient(135deg, #050f1c 0%, #0a2540 60%, #071A2C 100%);
  padding: 80px 20px;
  overflow: hidden;
  border-top: 1px solid rgba(201,165,106,0.15);
  border-bottom: 1px solid rgba(201,165,106,0.15);
}

.cpb-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(201,165,106,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(201,165,106,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Inner layout: left text / right images */
.cpb-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* full-width wrapper needed */
.completed-projects-banner {
  max-width: 100%;
}

.completed-projects-banner > .cpb-overlay {
  grid-column: 1 / -1;
}

.cpb-content {
  position: relative;
  z-index: 2;
}

.cpb-title {
  font-family: var(--font-sans-nav);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.06em;
  margin: 12px 0 20px;
  line-height: 1.1;
}

.cpb-desc {
  font-family: var(--font-sans-body);
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 32px;
}

.cpb-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
}

.cpb-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cpb-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.cpb-stat-label {
  font-family: var(--font-sans-nav);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-gray);
  text-transform: uppercase;
}

.cpb-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,165,106,0.25);
}

.cpb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Image row */
.cpb-image-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.cpb-img-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.cpb-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.75);
}

.cpb-img-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.9);
}

.cpb-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 10px 10px;
  background: linear-gradient(to top, rgba(7,26,44,0.95), transparent);
  font-family: var(--font-sans-nav);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  text-transform: uppercase;
  text-align: center;
}

/* First card slightly taller for visual interest */
.cpb-img-card:first-child {
  grid-row: span 1;
  margin-top: 20px;
}

/* Click entire banner image row → go to projects page */
a.cpb-img-card {
  display: block;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .cpb-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cpb-image-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cpb-img-card {
    aspect-ratio: 4/3;
  }

  .cpb-img-card:first-child {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .cpb-image-row {
    grid-template-columns: 1fr 1fr;
  }

  .cpb-img-card:last-child {
    display: none;
  }

  .cpb-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
}

