@charset "utf-8";
/* CSS Document */

:root {
  --primary: #84DAF3;
  --secondary: #555555;
  --light: #F1F3FA;
  --dark: #1C2035;
  --primary-dark: #5bc4e8;
  --accent: #FF6B47;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .navbar-brand {
  font-family: 'Syne', sans-serif;
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(28, 32, 53, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1050;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(132,218,243,0.2);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  font-family: 'Syne', sans-serif;
}

.brand-logo span { color: #a0b4ff; }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 0.5rem 0.5rem !important;
  transition: color 0.2s;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover { color: var(--primary) !important; }

.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
  cursor: pointer;
  user-select: none;
}

.lang-switch .lang-opt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 4px 13px;
  border-radius: 24px;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s;
  line-height: 1;
}

.lang-switch .lang-opt.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(132,218,243,0.5);
}

/* ── HERO CAROUSEL ── */
#heroCarousel {
  margin-top: 72px;
}

#heroCarousel .carousel-item {
  height: 90vh;
  min-height: 500px;
  position: relative;
}

#heroCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,32,53,0.82) 0%, rgba(132,218,243,0.35) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content h1 span { color: var(--primary); }

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--dark);
  box-shadow: 0 8px 25px rgba(132,218,243,0.5);
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 10px 28px;
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-outline-custom:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* ── SECTION COMMONS ── */
section { padding: 90px 0; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-title span { color: var(--primary); }

.section-subtitle {
  font-size: 1rem;
  color: var(--secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #2a3050 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(132,218,243,0.06);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 1.8rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-white {
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 13px 32px;
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(132,218,243,0.35);
  background: var(--primary-dark);
  color: var(--dark);
}

/* ── HOME / ABOUT ME ── */
#home { background: var(--light); padding-top: 90px; }

.about-img-wrap {
  position: relative;
  display: inline-block;
}

.about-img-wrap img {
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 20px 20px 60px rgba(132,218,243,0.15);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 30px;
  bottom: 30px;
  border: 3px solid var(--primary);
  border-radius: 16px;
  z-index: 0;
}

.about-img-wrap img { position: relative; z-index: 1; }

.badge-stat {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(132,218,243,0.4);
  z-index: 2;
}

.badge-stat .num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.badge-stat .lbl {
  font-size: 0.72rem;
  opacity: 0.85;
}

.skill-pill {
  display: inline-block;
  background: rgba(132,218,243,0.1);
  color: var(--primary);
  border: 1px solid rgba(132,218,243,0.25);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  margin: 3px;
}

/* ── ABOUT COMPANY ── */
#about { background: #fff; }

.service-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(132,218,243,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.feature-card:hover .service-icon-box {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.feature-card {
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #e8eaf4;
  transition: all 0.3s;
  height: 100%;
}

.feature-card:hover {
  box-shadow: 0 15px 40px rgba(132,218,243,0.12);
  border-color: rgba(132,218,243,0.25);
  transform: translateY(-4px);
}

/* ── WEB DESIGN SECTION ── */
#webdesign { background: var(--light); }

.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--secondary);
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ── PRICING ── */
#pricing { background: #fff; }

.price-card {
  border-radius: 16px;
  border: 1px solid #e8eaf4;
  padding: 35px 30px;
  transition: all 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  background: var(--dark);
  border-color: var(--primary);
  color: #fff;
}

.price-card.featured .price-title,
.price-card.featured .price-subtitle,
.price-card.featured .price-features li {
  color: rgba(255,255,255,0.85);
}

.price-card.featured .price-amount { color: #fff; }
.price-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 15px;
  right: -20px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 35px;
  transform: rotate(45deg);
  transform-origin: center;
  right: -25px;
}

.price-card:hover {
  box-shadow: 0 20px 50px rgba(132,218,243,0.15);
  transform: translateY(-5px);
}

.price-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.price-subtitle {
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 1.2rem;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.price-amount small {
  font-size: 1.2rem;
  font-weight: 600;
}

.price-features { list-style: none; padding: 0; margin-bottom: 2rem; }
.price-features li {
  padding: 7px 0 7px 24px;
  position: relative;
  font-size: 0.88rem;
  color: var(--secondary);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.price-card.featured .price-features li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.btn-price {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-price-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-price-outline:hover {
  background: var(--primary);
  color: var(--dark);
}

.btn-price-solid {
  background: var(--primary);
  color: var(--dark);
  border: 2px solid var(--primary);
}

.btn-price-solid:hover {
  background: transparent;
  color: var(--primary);
}

/* ── TEAM ── */
#team { background: var(--light); }

.team-card {
  text-align: center;
  padding: 35px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eaf4;
  transition: all 0.3s;
}

.team-card:hover {
  box-shadow: 0 15px 40px rgba(132,218,243,0.12);
  transform: translateY(-5px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  margin-bottom: 1rem;
}

.team-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.team-socials a {
  color: var(--secondary);
  font-size: 0.9rem;
  margin: 0 5px;
  transition: color 0.2s;
}

.team-socials a:hover { color: var(--primary); }

/* ── PORTFOLIO ── */
#portfolio { background: #fff; }

.portfolio-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8eaf4;
  transition: all 0.3s;
  height: 100%;
}

.portfolio-card:hover {
  box-shadow: 0 15px 40px rgba(132,218,243,0.15);
  transform: translateY(-5px);
}

.portfolio-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--light), #dde3f8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}

.portfolio-thumb::after {
  content: 'VIEW PROJECT';
  position: absolute;
  inset: 0;
  background: rgba(132,218,243,0.92);
  color: var(--dark);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-thumb::after { opacity: 1; }

.portfolio-body {
  padding: 20px;
}

.portfolio-body h5 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.portfolio-body p {
  font-size: 0.82rem;
  color: var(--secondary);
}

.port-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── PERSONAL PROJECTS ── */
#personal { background: var(--light); }

/* ── PHOTO RETOUCH ── */
#photoretouch { background: #fff; }

.retouch-feature {
  padding: 25px;
  border-radius: 12px;
  background: var(--light);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s;
}

.retouch-feature:hover {
  background: rgba(132,218,243,0.08);
}

.retouch-icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── CONTACT ── */
#contact { background: var(--light); }

.contact-info-box {
  background: var(--dark);
  border-radius: 16px;
  padding: 40px;
  color: #fff;
  height: 100%;
}

.contact-info-box h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-box p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(132,218,243,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item-text small {
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.contact-item-text span {
  color: #fff;
  font-size: 0.9rem;
}

.contact-form-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(132,218,243,0.08);
}

.form-control, .form-select {
  border: 1.5px solid #e8eaf4;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(132,218,243,0.12);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 70px 0 30px;
  color: rgba(255,255,255,0.7);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-brand-logo {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}

.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 40px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-left: 12px;
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--primary); }

/* ── FLOATING QUOTE BUTTON ── */
.float-quote-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  z-index: 1040;
  box-shadow: -4px 0 20px rgba(132,218,243,0.3);
  transition: background 0.2s;
  white-space: nowrap;
}

.float-quote-btn:hover { background: var(--primary-dark); }

/* ── MODAL ── */
.modal-header {
  background: var(--primary);
  color: #fff;
  border-radius: 12px 12px 0 0;
}

.modal-header .modal-title { font-family: 'Syne', sans-serif; font-weight: 700; }
.modal-header .btn-close { filter: brightness(0) invert(1); }
.modal-content { border-radius: 12px; overflow: hidden; border: none; }

/* ── ALERT MESSAGES ── */
#contactAlert, #quoteAlert { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #heroCarousel .carousel-item { height: 70vh; }
  .hero-content h1 { font-size: 2rem; }
  section { padding: 60px 0; }
  .about-img-wrap { margin-bottom: 2rem; }
  .badge-stat { display: none; }
}

