@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Exo+2:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1a2744;
  --navy-dark: #0f1a30;
  --navy-mid: #243256;
  --orange: #d95c1a;
  --orange-light: #e8703a;
  --orange-dark: #b84a12;
  --white: #ffffff;
  --gray-light: #f4f6fa;
  --gray: #8a9ab5;
  --gray-dark: #3a4a6a;
  --text: #1a2744;
  --shadow: 0 20px 60px rgba(26,39,68,0.15);
  --shadow-hover: 0 30px 80px rgba(26,39,68,0.25);
  --radius: 4px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Exo 2', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 80px;
  background: rgba(15, 26, 48, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(217,92,26,0.2);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 46px;
  height: 46px;
}

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

.logo-text .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-text .sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}

nav ul li a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--white);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.wp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 50px;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.wp-btn::after { display: none !important; }

.wp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5) !important;
  background: #20c55a !important;
  color: white !important;
}

.wp-btn svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: white;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(15,26,48,0.97) 0%, rgba(26,39,68,0.9) 50%, rgba(217,92,26,0.08) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(217,92,26,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,92,26,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(217,92,26,0.15);
  border: 1px solid rgba(217,92,26,0.3);
  color: var(--orange-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .accent {
  color: var(--orange);
  position: relative;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(217,92,26,0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(217,92,26,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 2;
  display: flex;
  gap: 50px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-item .label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ===== SECTION COMMON ===== */
section { padding: 100px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-header {
  margin-bottom: 70px;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

.section-title.light { color: var(--white); }

.section-line {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin-top: 20px;
}

/* ===== FEATURES SECTION ===== */
#features {
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,92,26,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 45px 35px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.feature-card:hover::before { width: 100%; }

.feature-icon {
  width: 56px; height: 56px;
  background: rgba(217,92,26,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--orange);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--orange);
  color: white;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* ===== PROJECTS SECTION ===== */
#projects-section {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.projects-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20vw;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  white-space: nowrap;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--navy-mid);
  transition: var(--transition);
}

.project-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.project-card .cover {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .cover { transform: scale(1.08); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,26,48,0.97) 0%, rgba(15,26,48,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(15,26,48,0.99) 0%, rgba(15,26,48,0.7) 60%, rgba(217,92,26,0.1) 100%);
}

.project-info {
  transform: translateY(20px);
  transition: var(--transition);
}

.project-card:hover .project-info { transform: translateY(0); }

.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.project-meta {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease 0.1s;
}

.project-card:hover .project-meta {
  opacity: 1;
  transform: translateY(0);
}

.project-meta p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-meta p svg { color: var(--orange); flex-shrink: 0; }

.project-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
  background: rgba(217,92,26,0.2);
  border: 1px solid rgba(217,92,26,0.4);
  color: var(--orange-light);
}

.project-cta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.project-card:hover .project-cta { opacity: 1; }

.no-cover {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: rgba(255,255,255,0.2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}

/* ===== MODAL / LIGHTBOX ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,16,35,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  overflow-y: auto;
  padding: 30px 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--navy);
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover { background: var(--orange); }

.modal-gallery {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.gallery-main {
  width: 100%; height: 100%;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(15,26,48,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-nav:hover { background: var(--orange); border-color: var(--orange); }
.gallery-prev { left: 15px; }
.gallery-next { right: 15px; }

.gallery-counter {
  position: absolute;
  bottom: 15px; right: 15px;
  background: rgba(15,26,48,0.8);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(0,0,0,0.2);
  overflow-x: auto;
}

.gallery-thumbs img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
  border: 2px solid transparent;
  flex-shrink: 0;
}

.gallery-thumbs img.active,
.gallery-thumbs img:hover {
  opacity: 1;
  border-color: var(--orange);
}

.modal-info {
  padding: 30px 35px;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.modal-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

.detail-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.modal-description {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  margin-top: 15px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  min-height: 50vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.about-hero .hero-pattern { opacity: 0.5; }

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  z-index: -1;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 20px;
}

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

.value-item {
  padding: 20px;
  background: var(--gray-light);
  border-radius: 6px;
  border-left: 3px solid var(--orange);
}

.value-item h4 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--gray-dark);
  margin: 0;
}

/* ===== PROJECTS PAGE ===== */
.page-hero {
  min-height: 40vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-icon {
  width: 48px; height: 48px;
  background: rgba(217,92,26,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
}

.info-item h4 {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.info-item p {
  font-size: 0.92rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.contact-form {
  background: var(--gray-light);
  padding: 50px 45px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(26,39,68,0.1);
  border-radius: var(--radius);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: white;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: white;
  padding: 15px 36px;
  border: none;
  border-radius: var(--radius);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 280px;
}

.footer-section h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-section ul li a:hover { color: white; padding-left: 5px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== FLOATING WP ===== */
.floating-wp {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 999;
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
}

.floating-wp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,0.6);
}

.floating-wp svg { width: 28px; height: 28px; }

.wp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.floating-wp:hover .wp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 10000;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: pageReveal 0.5s ease forwards;
}

@keyframes pageReveal {
  0% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ALERTS ===== */
.alert {
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 0.88rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.alert-success { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); color: #25D366; }
.alert-error { background: rgba(217,92,26,0.1); border: 1px solid rgba(217,92,26,0.3); color: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-inner { padding: 0 30px; }
  .hero-content { padding: 100px 30px 100px; }
  .container { padding: 0 30px; }
  .features-grid,
  .projects-grid,
  .projects-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-stats { right: 30px; bottom: 80px; gap: 30px; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: rgba(15,26,48,0.98); padding: 20px; gap: 0; border-top: 1px solid rgba(217,92,26,0.2); }
  nav ul.open { display: flex; }
  nav ul li a { padding: 15px 20px; display: block; font-size: 0.85rem; }
  .hamburger { display: flex; }
  .hero-stats { position: relative; bottom: auto; right: auto; justify-content: center; margin-top: 50px; flex-wrap: wrap; }
  .features-grid,
  .projects-grid,
  .projects-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 25px; }
  .modal-details { grid-template-columns: 1fr; }
  .modal-gallery { height: 250px; }
  .hero-title { font-size: 2.5rem; }
}
