/* ===============================
ROOT COLORS
=================================*/
:root {
  --tc-bg-cream: #F4EFEA;
  --tc-accent-clay: #B08968;
  --tc-accent-deep: #7F5539;
  --tc-text-dark: #3E3E3E;
  --tc-white: #ffffff;
}

/* ===============================
GLOBAL
=================================*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--tc-bg-cream);
  color: var(--tc-text-dark);
  margin: 0;
  overflow-x: hidden;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

/* ==========================================================================
TOP BAR SECTION START
========================================================================== */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--tc-accent-deep);
  position: relative;
}

.top-bar {
  transition: transform 0.4s ease;
  width: 100%;
}

.top-bar.hide {
  transform: translateY(-100%);
}

.left-top {
  background: var(--tc-accent-clay);
  color: white;
  position: relative;
  width: 50%;
  clip-path: polygon(0 19%, 0 0, 38% 0%, 71% 0%, 100% 0, 100% 0, 94% 106%, 100% 104%, 100% 29%, 100% 100%, 0 100%, 0 48%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}

.left-top h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  text-align: center;
}

.right-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  gap: 50px;
  padding-right: 100px;
  color: aliceblue;
  font-size: 15px;
  margin: 0;
}

/* TOP BAR MEDIA QUERIES - SEPARATE FOR EACH SIZE */
@media (max-width: 1440px) {
  .right-content {
    gap: 40px;
    padding-right: 80px;
  }
}

@media (max-width: 1200px) {
  .right-content {
    gap: 30px;
    padding-right: 60px;
  }
  .left-top {
    width: 45%;
  }
}

@media (max-width: 1024px) {
  .right-content {
    gap: 25px;
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }
  
  .left-top {
    width: 100%;
    clip-path: none;
    padding: 15px 0;
    min-height: 60px;
  }
  
  .left-top h3 {
    font-size: 14px;
  }
  
  .right-content {
    padding-right: 0;
    gap: 20px;
    margin: 10px 0;
    flex-direction: column;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .left-top h3 {
    font-size: 12px;
  }
  
  .right-content {
    gap: 15px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .left-top h3 {
    font-size: 11px;
  }
  
  .right-content li {
    font-size: 12px;
  }
}

/* =========================================================
HAMBURGER MENU
========================================================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1100;
  padding: 10px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.4s ease;
}

/* Animate into X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================================
NAVBAR SECTION START
========================================================================== */
.navbar {
  position: fixed;
  top:69px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--tc-accent-deep);
  z-index: 1000;
  transition: all 0.4s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
/* ===============================
NAVBAR SCROLL EFFECT
=================================*/

.navbar.scrolled{
top:0;
}

.navbar h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--tc-white);
  margin: 0;
}

.nav-section {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-section i {
  transition: transform 0.4s ease;
  margin-left: 5px;
}

.nav-section i:hover {
  transform: rotate(180deg);
}

.nav-section li a {
  font-size: 18px;
  text-decoration: none;
  color: var(--tc-white);
  transition: color 0.3s ease;
}

.nav-section li a:hover {
  color: var(--tc-accent-clay);
}

#nav-button {
  position: relative;
  overflow: hidden;
  background: var(--tc-accent-clay);
  color: var(--tc-white);
  padding: 16px 24px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 16px;
}

#nav-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 50%;
  height: 200%;
  background: var(--tc-accent-deep);
  transform: rotate(25deg);
  transition: 0.6s ease;
}

#nav-button:hover::before {
  left: 120%;
}

#nav-button:hover {
  transform: translateY(-3px);
}

/* NAVBAR MEDIA QUERIES - SEPARATE FOR EACH SIZE */
@media (max-width: 1440px) {
  .navbar {
    padding: 12px 30px;
  }
  
  .navbar h1 {
    font-size: 26px;
  }
  
  .nav-section {
    gap: 35px;
  }
}

@media (max-width: 1200px) {
  .navbar h1 {
    font-size: 24px;
  }
  
  .nav-section {
    gap: 30px;
  }
  
  .nav-section li a {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 12px 25px;
  }
  
  .navbar h1 {
    font-size: 22px;
  }
  
  .nav-section {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .navbar {
    top: 220px;
    justify-content: space-between;
    padding: 15px 20px;
  }
  
  .navbar h1 {
    font-size: 20px;
    flex: 1;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-section {
    position: fixed;
    top: 75%;
    left: 0;
    width: 100%;
    background: var(--tc-accent-deep);
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 40px 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .nav-section.active {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-section li a {
    font-size: 20px;
  }
  
  #nav-button {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 15px;
    top: 65px;
  }
  
  .navbar h1 {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
  
  .nav-section {
    padding: 30px 15px;
    gap: 20px;
  }
  
  .nav-section li a {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .navbar h1 {
    font-size: 16px;
  }
  
  .nav-section li a {
    font-size: 16px;
  }
}

/* ===============================
HERO SECTION
=================================*/
.services-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(127, 85, 57, 0.7), rgba(127, 85, 57, 0.7)),
              url("event.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  animation: heroZoom 12s infinite alternate;
  margin-top: 75px;
}

@keyframes heroZoom {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
}

.services-hero h1 {
  font-size: 48px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

.services-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO MEDIA QUERIES */
@media (max-width: 1440px) {
  .services-hero {
    height: 55vh;
  }
  
  .services-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 1200px) {
  .services-hero {
    height: 50vh;
  }
  
  .services-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 1024px) {
  .services-hero {
    height: 45vh;
    margin-top: 105px;
  }
  
  .services-hero h1 {
    font-size: 34px;
  }
  
  .services-hero p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    height: 40vh;
    margin-top: 60px;
  }
  
  .services-hero h1 {
    font-size: 28px;
    margin-bottom: 8px;
  }
  
  .services-hero p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .services-hero {
    height: 35vh;
    margin-top: 130px;
  }
  
  .services-hero h1 {
    font-size: 24px;
  }
  
  .services-hero p {
    font-size: 14px;
    padding: 0 15px;
  }
}

@media (max-width: 360px) {
  .services-hero {
    height: 30vh;
    margin-top: 125px;
  }
  
  .services-hero h1 {
    font-size: 20px;
  }
}

/* ===============================
SERVICES GRID
=================================*/
.services-container {
  padding: 80px 10%;
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: 0.6s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  color: var(--tc-accent-deep);
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* SERVICES MEDIA QUERIES */
@media (max-width: 1440px) {
  .services-container {
    padding: 70px 8%;
  }
}

@media (max-width: 1200px) {
  .services-container {
    padding: 60px 6%;
  }
  
  .services-grid {
    gap: 25px;
  }
  
  .service-card {
    padding: 30px;
  }
}

@media (max-width: 1024px) {
  .services-container {
    padding: 50px 5%;
  }
  
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .services-container {
    padding: 40px 5%;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .service-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .services-container {
    padding: 30px 3%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-card h3 {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

/* ===============================
PROCESS SECTION
=================================*/
.process-section {
  padding: 80px 10%;
  background: var(--tc-white);
  max-width: 1400px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.process-step:hover {
  transform: translateY(-8px);
}

.process-step h3 {
  font-size: 22px;
  color: var(--tc-accent-deep);
  margin: 15px 0 10px 0;
}

.process-step p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.process-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  object-fit: cover;
}

/* PROCESS MEDIA QUERIES */
@media (max-width: 1440px) {
  .process-section {
    padding: 70px 8%;
  }
}

@media (max-width: 1200px) {
  .process-section {
    padding: 60px 6%;
  }
}

@media (max-width: 1024px) {
  .process-section {
    padding: 50px 5%;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 40px 5%;
  }
  
  .process-grid {
    gap: 25px;
  }
  
  .process-step {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 30px 3%;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process-step {
    padding: 25px 15px;
  }
  
  .process-step h3 {
    font-size: 20px;
  }
}

/* ===============================
BENEFITS SECTION
=================================*/
.benefits-section {
  padding: 80px 10%;
  background: var(--tc-bg-cream);
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit h3 {
  color: var(--tc-accent-deep);
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: #666;
}

/* BENEFITS MEDIA QUERIES */
@media (max-width: 1440px) {
  .benefits-section {
    padding: 70px 8%;
  }
}

@media (max-width: 1200px) {
  .benefits-section {
    padding: 60px 6%;
  }
}

@media (max-width: 1024px) {
  .benefits-section {
    padding: 50px 5%;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 40px 5%;
  }
  
  .benefits-grid {
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .benefits-section {
    padding: 30px 3%;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit {
    padding: 25px 20px;
  }
}

/* ===============================
CTA SECTION
=================================*/
.services-cta {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(176, 137, 104, 0.95), rgba(127, 85, 57, 0.95));
  color: white;
  max-width: 1200px;
  margin: 0 auto;
}

.services-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 34px;
  background: white;
  color: #7F5539;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: #7F5539;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* CTA MEDIA QUERIES */
@media (max-width: 1440px) {
  .services-cta {
    padding: 80px 15px;
  }
}

@media (max-width: 1200px) {
  .services-cta {
    padding: 70px 10%;
  }
  
  .services-cta h2 {
    font-size: 32px;
  }
}

@media (max-width: 1024px) {
  .services-cta {
    padding: 60px 8%;
  }
}

@media (max-width: 768px) {
  .services-cta {
    padding: 50px 5%;
  }
  
  .services-cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .services-cta {
    padding: 40px 3%;
  }
  
  .services-cta h2 {
    font-size: 24px;
  }
  
  .cta-button {
    padding: 12px 28px;
    font-size: 15px;
  }
}

/* ==========================================================================
FOOTER SECTION START
========================================================================== */
.footer {
  background: var(--tc-accent-deep);
  color: white;
  padding: 80px 10% 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--tc-accent-clay);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
}

.footer-col ul li:hover,
.footer-col ul li a:hover {
  color: var(--tc-accent-clay);
}

.social-icons {
  margin-top: 15px;
}

.social-icons i {
  margin-right: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  color: #ddd;
}

.social-icons i:hover {
  color: var(--tc-accent-clay);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

/* FOOTER MEDIA QUERIES */
@media (max-width: 1440px) {
  .footer {
    padding: 70px 8% 20px;
  }
}

@media (max-width: 1200px) {
  .footer {
    padding: 60px 6% 20px;
  }
  
  .footer-container {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .footer {
    padding: 50px 5% 20px;
  }
  
  .footer-col h3 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 5% 20px;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .footer-col {
    min-width: 100%;
  }
  
  .footer-col h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 3% 15px;
  }
  
  .footer-container {
    gap: 25px;
  }
  
  .footer-col h3 {
    font-size: 18px;
  }
  
  .footer-col h4 {
    font-size: 16px;
  }
  
  .footer-col p,
  .footer-col ul li {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .footer {
    padding: 25px 2% 10px;
  }
  
  .footer-col h3 {
    font-size: 16px;
  }
  
  .social-icons i {
    font-size: 16px;
    margin-right: 10px;
  }
}

/* SCROLL BAR CUSTOMIZATION */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--tc-bg-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--tc-accent-clay);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--tc-accent-deep);
}
/* logo */
.logo img{
height:55px;
width:auto;
object-fit:contain;
}
