/* ── VARIABLES & RESET ── */
:root {
  --pink:       #f9c4d2;
  --pink-light: #fde8ee;
  --pink-bg:    #fff0f4;
  --yellow:     #f9e4a0;
  --mint:       #c6ede5;
  --cream:      #fffaf7;
  --charcoal:   #2b2b2b;
  --muted:      #888;
  --accent:     #e8637a;
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --radius-card:  20px;
  --shadow-soft:  0 8px 32px rgba(0,0,0,0.08);
  --transition:   0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.6rem 5%;
  position: sticky;
  top: 0;
  background: #faaf40;
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(180,100,0,0.15);
  box-shadow: 0 2px 16px rgba(250,175,64,0.25);
}

.logo-box {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 6px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#logo_image {
  width: auto;
  height: 110px;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.nav-lang {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin-right: auto;
}
.nav-lang .active { color: #fff; font-weight: 700; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active-link { color: #fff; font-weight: 700; }
.nav-links a.active-link::after { width: 100%; }

/* ── HAMBURGER MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,175,64,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  backdrop-filter: blur(12px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  transition: color var(--transition), transform var(--transition);
}
.mobile-nav a:hover { color: var(--charcoal); transform: scale(1.05); }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 5% 4rem 7%;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(238, 184, 140, 0.92) 0%, rgba(255,255,255,0.82) 60%),
    url('cake/top-view-cake-with-pastry-cream-plate-purple-shawl-fork.jpg') center/cover no-repeat;
}

.hero-blob {
  position: absolute;
  top: -80px; right: -80px;
  width: 520px; height: 520px;
  border-radius: 62% 38% 55% 45% / 48% 52% 48% 52%;
  background: #faaf40;
  opacity: 0.25;
  animation: blobFloat 8s ease-in-out infinite;
  z-index: 0;
}
@keyframes blobFloat {
  0%,100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.06) rotate(6deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 0.9s ease both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--charcoal);
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(43,43,43,0.18);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,99,122,0.3);
}

.hero-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.social-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color var(--transition), transform var(--transition);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { color: var(--accent); transform: scale(1.15); }

.hero-pagination {
  display: flex;
  gap: 6px;
  margin-top: 3rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--accent); transform: scale(1.3); }

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  animation: fadeSlideUp 1.1s 0.2s ease both;
}

.hero-circle {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: #ffc46b;
  z-index: 0;
  opacity: 0.9;
}

.hero-cake-img {
  position: relative;
  z-index: 2;
  width: 340px; height: 340px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 24px 64px rgba(250,175,64,0.45);
  animation: imgFloat 6s ease-in-out infinite;
}
@keyframes imgFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ── SECTION TYPOGRAPHY ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.section-title em { font-style: italic; color: var(--accent); }

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto 2.8rem;
  line-height: 1.7;
}

/* ── PRODUCTS GRID ── */
.products-section { padding: 5rem 7%; background: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 860px;
  margin: 0 auto;
}

.product-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-soft);
}
.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover img { transform: scale(1.08); }

.product-card span {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(255,255,255,0.88);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.card-pink        { background: var(--pink); }
.card-yellow      { background: var(--yellow); }
.card-mint        { background: var(--mint); }
.card-pink-light  { background: var(--pink-light); }

.active-card { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ── GALLERY SECTION ── */
.gallery-section { padding: 5rem 7%; background: #fff8f0; }

.video-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.video-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #000;
}
.video-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(232,99,122,0.18);
}

.video-wrap { position: relative; width: 100%; height: 100%; min-height: 20px; }

.video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,43,43,0.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.video-card:hover .video-overlay { opacity: 1; }

.video-label {
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}

/* ── GALLERY RESPONSIVE ── */
@media (max-width: 900px) {
  .video-gallery-grid { grid-template-columns: 1fr 1fr; }
  .video-wrap { min-height: 320px; }
}
@media (max-width: 580px) {
  .gallery-section { padding: 3rem 4%; }
  .video-gallery-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .video-wrap { min-height: 260px; }
}

/* ── ABOUT SECTION ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 7%;
  background: #fff;
}

.about-image-wrap { position: relative; display: flex; align-items: center; justify-content: center; }

.about-blob {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 55% 45% 60% 40% / 50% 55% 45% 50%;
  background: var(--yellow);
  z-index: 0;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

.about-img {
  position: relative;
  z-index: 2;
  width: 400px; height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-content .section-title { text-align: left; }
.about-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }

.made-with { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--pink); }
.made-with h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.made-with h3 em { font-style: italic; }
.accent { color: var(--accent); }

/* ── CLASSES SECTION ── */
.classes-section { padding: 6rem 7%; background: var(--pink-bg); position: relative; overflow: hidden; }

.classes-header { text-align: center; margin-bottom: 4rem; }

.classes-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.classes-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.classes-imgs { position: relative; height: 520px; }

.classes-img-blob {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 55% 45% 60% 40% / 50% 55% 45% 50%;
  background: var(--yellow);
  top: 40px; left: -20px;
  z-index: 0;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

.cls-img { position: absolute; object-fit: cover; border-radius: 20px; box-shadow: 0 16px 48px rgba(0,0,0,0.13); z-index: 2; }

.cls-img-top { width: 68%; height: 300px; top: 0; left: 0; }

.cls-img-bottom {
  width: 60%;
  height: 260px;
  bottom: 0; right: 0;
  outline: 4px solid #fff;
  outline-offset: 0;
}

.classes-details { display: flex; flex-direction: column; gap: 2rem; }

.cls-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

.cls-meta-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--accent);
}
.cls-meta-icon { font-size: 1.2rem; margin-bottom: 2px; }
.cls-meta-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.cls-meta-value { font-size: 0.92rem; font-weight: 700; color: var(--charcoal); }

.cls-fee-block { background: var(--charcoal); border-radius: var(--radius-card); padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; }

.cls-fee-main { display: flex; flex-direction: column; gap: 2px; }

.cls-fee-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }

.cls-fee-amount { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: #fff; }

.cls-fee-note { font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 400; }

.cls-fee-reserve { font-size: 0.85rem; color: rgba(255,255,255,0.75); padding-top: 0.6rem; border-top: 1px solid rgba(255,255,255,0.12); }
.cls-fee-reserve strong { color: var(--yellow); }

.cls-curriculum { background: #fff; border-radius: var(--radius-card); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-soft); }

.cls-curriculum-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1rem; }

.cls-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cls-tags span {
  background: var(--pink-light);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition);
}
.cls-tags span:hover { background: var(--accent); color: #fff; }

.cls-cta { align-self: flex-start; background: var(--accent); font-size: 0.95rem; padding: 0.9rem 2.2rem; }
.cls-cta:hover { background: var(--charcoal); }

/* ── FOOTER ── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 4rem 7%; }

.footer-inner { max-width: 700px; margin: 0 auto; text-align: center; }

.footer-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 0.8rem; }

.footer-tagline { font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.7; }

.footer-links { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--pink); }

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── MEDIA QUERIES (TABLET & MOBILE RESPONSIVE) ── */
@media (max-width: 1024px) {
  #logo_image { height: 80px; max-width: 200px; }
  .nav-links { gap: 1.6rem; }
  .nav-links a { font-size: 0.85rem; }
  .hero { padding: 3.5rem 5%; gap: 2rem; }
  .hero-circle { width: 340px; height: 340px; }
  .hero-cake-img { width: 280px; height: 280px; }
  .product-grid { max-width: 100%; }
  .about-section { gap: 3rem; padding: 5rem 5%; }
  .about-img { width: 320px; height: 380px; }
  .about-blob { width: 380px; height: 380px; }
}

@media (max-width: 900px) {
  .navbar { padding: 0.5rem 5%; gap: 1rem; }
  #logo_image { height: 68px; max-width: 180px; }
  .nav-lang { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; padding: 3rem 5% 4rem; min-height: auto; }
  .hero-blob { width: 300px; height: 300px; top: -40px; right: -40px; }
  .hero-circle { width: 300px; height: 300px; }
  .hero-cake-img { width: 260px; height: 260px; }
  .hero-content { order: 2; }
  .hero-image-wrap { order: 1; margin-bottom: 2rem; }
  .hero-actions { justify-content: center; flex-wrap: wrap; gap: 1.2rem; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-pagination { justify-content: center; }
  .products-section { padding: 4rem 5%; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .gallery-section { padding: 4rem 5%; }
  .about-section { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 5%; }
  .about-image-wrap { justify-content: center; }
  .about-content .section-title { text-align: center; }
  .about-blob { width: 300px; height: 300px; }
  .about-img { width: 280px; height: 340px; }
  .classes-section { padding: 4rem 5%; }
  .classes-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .classes-imgs { height: 320px; order: 2; }
  .classes-details { order: 1; }
  .cls-img-top { width: 62%; height: 220px; }
  .cls-img-bottom { width: 55%; height: 195px; }
  .classes-img-blob { width: 260px; height: 260px; }
  .cls-cta { align-self: center; }
  .footer { padding: 3rem 5%; }
  .footer-links { gap: 1.2rem; }
}

@media (max-width: 580px) {
  #logo_image { height: 54px; max-width: 150px; }
  .hero { padding: 2rem 5% 3rem; }
  .hero-blob { width: 200px; height: 200px; }
  .hero-circle { width: 230px; height: 230px; }
  .hero-cake-img { width: 200px; height: 200px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-sub { font-size: 0.88rem; max-width: 100%; }
  .btn-primary { padding: 0.8rem 1.6rem; font-size: 0.85rem; }
  .hero-pagination { margin-top: 2rem; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .section-sub { font-size: 0.85rem; margin-bottom: 2rem; }
  .products-section { padding: 3rem 4%; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .product-card span { font-size: 0.72rem; padding: 4px 10px; bottom: 10px; left: 10px; }
  .gallery-section { padding: 3rem 4%; }
  .about-section { padding: 3rem 4%; gap: 1.5rem; }
  .about-blob { width: 220px; height: 220px; }
  .about-img { width: 100%; max-width: 280px; height: 300px; }
  .about-content p { font-size: 0.85rem; }
  .made-with h3 { font-size: 1.25rem; }
  .made-with p { font-size: 0.85rem; }
  .classes-section { padding: 3rem 4%; }
  .classes-header { margin-bottom: 2rem; }
  .classes-imgs { height: 260px; }
  .cls-img-top { width: 65%; height: 175px; }
  .cls-img-bottom { width: 57%; height: 155px; }
  .classes-img-blob { width: 200px; height: 200px; }
  .cls-fee-amount { font-size: 1.3rem; }
  .cls-cta { align-self: stretch; text-align: center; }
  .footer { padding: 2.5rem 5%; }
  .footer-logo { font-size: 1.5rem; }
  .footer-links { flex-direction: column; align-items: center; gap: 0.8rem; }
}

@media (max-width: 380px) {
  .hero-circle { width: 190px; height: 190px; }
  .hero-cake-img { width: 170px; height: 170px; }
  .hero-title { font-size: 2.6rem; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
}

/* ── 100% CLEAN FLOATING GROUP FOR WHATSAPP & SCROLL UP ── */
.social-floating-group {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* බටන් එක පිටුපස එක පිහිටන පරතරය */
    z-index: 9999;
}

/* සියලුම රවුම් පාවෙන බටන් වල පොදු හැඩය (WhatsApp / Social / Scroll Up) */
.social-sub-btn, .back-to-top-btn, .whatsapp-contact-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

/* SVG සහ Icons වල ප්‍රමාණය */
.social-floating-group svg, 
.social-floating-group i {
    width: 22px;
    height: 22px;
    font-size: 20px;
}

/* ප්‍රධාන WhatsApp බටන් එක (Icon Only) */
.whatsapp-contact-btn {
    background-color: #25d366;
}
.whatsapp-contact-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Back to Top Button එක (රෝස පාට) */
.back-to-top-btn {
    background-color: #ffb6c1; 
    color: #000000 !important; /* ඊතලය කළු පාටින් පෙනීමට */
    order: -1; /* මෙමඟින් බටන් ලිස්ට් එකේ සැමවිටම උඩින්ම Scroll Button එක පිහිටයි */
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7);
}
.back-to-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}
.back-to-top-btn.visible:hover {
    background-color: #e8637a; /* වෙබ් එකේ තියෙන Accent Pink පාට */
    color: #ffffff !important;
    transform: scale(1) translateY(-3px);
    box-shadow: 0 6px 16px rgba(232, 99, 122, 0.4);
}

/* එක් එක් Social බටන් වලට අදාළ Brands වල පාටවල් */
.social-sub-btn.facebook { background-color: #1877f2; }
.social-sub-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-sub-btn.tiktok { background-color: #000000; }

.social-sub-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* ෆෝන් එකෙන් බලද්දී බටන් සයිස් එක පොඩ්ඩක් අඩු කිරීම (Responsive) */
@media (max-width: 580px) {
    .social-floating-group {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    .social-sub-btn, .back-to-top-btn, .whatsapp-contact-btn {
        width: 40px;
        height: 40px;
    }
    .social-floating-group svg, 
    .social-floating-group i {
        width: 18px;
        height: 18px;
        font-size: 16px;
    }
}