/* ========================================
   ADVANCED PREMIUM COMPANY WEBSITE
   Style.css - Complete Styling & Animations
   ======================================== */
.logo_style
{
    display: none;
    align-content: center;
}
#bottlemedia
{
    width: 20%;
    border-radius: 50%;
    margin-left: 40%;
    margin-top: 15%;
}
@media (max-width: 480px) {
    #bottlemedia
    {
        width: 50%;
        margin-left: 25%;
        margin-top: 30%;
    }
}
@media (max-width: 480px) and (max-height: 700px) {
    #bottlemedia
    {
        width: 70%;
        margin-left: 15%;
        margin-top: 40%;
    }
}
/* ========== CSS VARIABLES ==========  */
:root {
    --bottle-green: #0F3D3E;
    --bottle-dark: #0a2a2b;
    --gold: #D4AF37;
    --gold-light: #e8c547;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Fixed header: logo row (~55px) + vertical padding (15px × 2) — matches layout below content */
    --header-offset: 86px;
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset);
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header .container {
    position: relative;
    width: 100%;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding-left: 25px;
    padding-right: 20px;
    height: 55px;
    width: 100%;
    margin-left: -15px;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
    position: relative;
    z-index: 6;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

a.logo {
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--bottle-green), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2.2vw, 30px);
    flex: 1;
    width: 100%;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    align-items: center;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 14px;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--gold);
    padding-left: 22px;
}

.dropdown-item i {
    color: var(--gold);
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: -65px;
    flex-shrink: 0;
}

.contact-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--bottle-green), var(--bottle-dark));
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 61, 62, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== CONTACT MODAL ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid var(--bg-light);
}

.modal-header h2 {
    font-size: 24px;
    color: var(--bottle-green);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* Contact Form */
.contact-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--bottle-green), var(--bottle-dark));
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 61, 62, 0.3);
}

.form-message {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--bottle-green);
    display: none;
}

.form-message.show {
    display: block;
    animation: slideUp 0.3s ease;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    margin-top: var(--header-offset);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    gap: 30px;
    background: linear-gradient(135deg, rgba(15, 61, 62, 0.05), rgba(212, 175, 55, 0.05));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(15, 61, 62, 0.1), transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.hero-logo-wrapper {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 300px;
    height: 300px;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 10;
    pointer-events: none;
}

.hero-logo:hover::before {
    animation: shine 0.6s ease-in-out;
}
.hero-logo img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
}

/* .hero-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(15, 61, 62, 0.2));
} */

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-top: 0;
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--bottle-green), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bottle-green);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* ========== SECTION STYLES ========== */
section {
    padding: 80px 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--bottle-green);
}

.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--bottle-green), var(--gold));
    margin: 0 auto;
    border-radius: 2px;
    animation: expandWidth 0.6s ease;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* ========== ABOUT SECTION ========== */
.about {
    background: linear-gradient(135deg, rgba(15, 61, 62, 0.05), rgba(212, 175, 55, 0.05));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    width: 400px;
    border-radius: 12px;
    aspect-ratio: 3/4;
    animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.2));
    z-index: 2;
} */

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.about-text {
    animation: slideInRight 0.8s ease;
}

/* How we work Time Line */

 /* ─── STEP ─── */
  .step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 64px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
 
  .step.visible { opacity: 1; transform: translateY(0); }
 
  /* Even steps: card on right */
  .step.right .step-card { grid-column: 3; grid-row: 1; }
  .step.right .step-node { grid-column: 2; grid-row: 1; }
  .step.right .step-spacer { grid-column: 1; grid-row: 1; }
 
  /* Odd steps: card on left */
  .step.left .step-card { grid-column: 1; grid-row: 1; }
  .step.left .step-node { grid-column: 2; grid-row: 1; }
  .step.left .step-spacer { grid-column: 3; grid-row: 1; }
 
  /* Node (center dot) */
  .step-node {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
 
  .node-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(212,175,55,0.1);
    transition: box-shadow 0.3s ease;
  }
 
  .step:hover .node-ring {
    box-shadow: 0 0 0 10px rgba(212,175,55,0.18), 0 0 24px rgba(212,175,55,0.3);
  }
 
  .node-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
  }
   /* ─── ORNAMENT ─── */
  .ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 40px auto 0;
  }
  .ornament-line { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
  .ornament-line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
  .ornament-diamond {
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
  }
 
  /* ─── TIMELINE SECTION ─── */
  .timeline-section {
    position: relative;
    padding: 80px 24px 100px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Poppins', 'Inter', sans-serif;
  }
 
  /* Vertical center line */
  .timeline-track {
    position: absolute;
    left: 50%;
    top: 60px;
    bottom: 60px;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(212,175,55,0.15);
    overflow: hidden;
  }
 
  .timeline-track-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: linear-gradient(180deg, var(--gold), var(--gold-light), var(--gold));
    transition: height 0.1s linear;
    box-shadow: 0 0 12px rgba(212,175,55,0.5);
  }

/* ─── MOBILE ─── */
  @media (max-width: 768px) {
    .timeline-track { display: none; }
 
    .step {
      display: block;
      margin-bottom: 40px;
      padding-left: 24px;
      border-left: 2px solid rgba(212,175,55,0.3);
      position: relative;
    }
 
    .step.left, .step.right {
      grid-template-columns: unset;
    }
 
    .step-node {
      position: absolute;
      left: -27px;
      top: 0;
    }
 
    .node-ring { width: 40px; height: 40px; }
    .node-num { font-size: 15px; }
 
    .step-spacer { display: none; }
    .step-card { display: block; }
  }
  /* ─── TABLET ─── */
  @media (min-width: 769px) and (max-width: 1024px) {
    .timeline-section { max-width: 900px; }
    .card-image { height: 170px; }
    .card-title { font-size: 22px; }
  }
  .step-card {
    font-family: 'Poppins', 'Inter', sans-serif;
    background: #ffffff;
    border: 1px solid rgba(15,61,46,0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(15,61,46,0.10);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
  }
 
  .step-card:hover {
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 20px 60px rgba(15,61,46,0.15), 0 0 0 1px rgba(212,175,55,0.25), 0 0 40px rgba(212,175,55,0.08);
    transform: translateY(-4px);
  }
 
  .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: brightness(0.65) saturate(0.7) sepia(0.15);
    transition: filter 0.4s ease;
  }
 
  .step-card:hover .card-image {
    filter: brightness(0.75) saturate(0.9) sepia(0.1);
  }
 
  .card-image-wrap {
    position: relative;
    overflow: hidden;
  }
 
  .card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(212,175,55,0.08) 0%,
      rgba(15,61,46,0.6) 100%
    );
  }
 
  .card-icon-badge {
    position: absolute;
    bottom: -22px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #b8942a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(212,175,55,0.4);
    border: 2px solid rgba(255,255,255,0.15);
  }
 
  .card-body {
    padding: 36px 28px 28px;
  }
 
  .card-step-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
  }
 
  .card-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 14px;
  }
 
  .card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
  }
 
  .card-accent {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(15,61,46,0.1);
  }
 
  .accent-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
 
  .accent-text {
    font-size: 12px;
    color: rgba(15,61,46,0.45);
    font-weight: 300;
    letter-spacing: 0.5px;
  }


@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 5px;
    color: var(--bottle-green);
}

.position {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.bio {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.number {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== SERVICES SECTION ========== */
.services {
    background: var(--white);
    font-family: 'Poppins', 'Inter', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(15, 61, 62, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(15, 61, 62, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bottle-green), var(--bottle-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--bottle-green);
    position: relative;
    z-index: 2;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.service-features {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.service-features i {
    color: var(--gold);
    font-size: 12px;
}

.service-benefits {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-benefits h4 {
    color: var(--bottle-green);
    margin-bottom: 10px;
    font-size: 14px;
}

.service-benefits p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.service-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--bottle-green), var(--bottle-dark));
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    box-sizing: border-box;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 61, 62, 0.3);
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose {
    background: linear-gradient(135deg, rgba(15, 61, 62, 0.05), rgba(212, 175, 55, 0.05));
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--gold);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.why-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 36px;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.2);
}

.why-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.why-card h3 {
    color: var(--bottle-green);
    margin-bottom: 10px;
    font-size: 18px;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* ========== PROCESS SECTION ========== */
.process {
    background: var(--white);
    padding: 80px 20px;
}

/* Timeline layout */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Step card */
.process-step {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(15,61,62,0.05));
    border: 2px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: 0.4s ease;
}

/* Hover effect */
.process-step:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
    transform: translateY(-10px) scale(1.03);
}

/* Step number */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bottle-green), var(--bottle-dark));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    margin: 0 auto 20px;
    transition: 0.5s;
}

.process-step:hover .step-number {
    transform: rotate(360deg) scale(1.2);
}

/* Text */
.process-step h3 {
    color: var(--bottle-green);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* 🔥 SCROLL ANIMATION */

/* Hidden state */
.reveal {
    opacity: 0;
    transform: translateY(80px);
}

/* Show when visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* ========== ACHIEVEMENTS SECTION ========== */
.achievements {
    background: linear-gradient(135deg, rgba(15, 61, 62, 0.05), rgba(212, 175, 55, 0.05));
}

.carousel {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;

  /* Glass effect */
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}


.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  user-select: none;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

/* Navigation Buttons */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .slide img {
    height: 250px;
  }
  .carousel{    
    width: 110%;
    height: 200px;
    margin-left: -15px;
  }

  .nav {
    padding: 8px 12px;
    font-size: 18px;
  }
}
/* ========== CLIENTS SECTION ========== */
.clients {
    background: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.client-logo {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(15, 61, 62, 0.02));
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: var(--transition);
    cursor: pointer;
}

.client-logo svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.client-logo:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    background: linear-gradient(135deg, rgba(15, 61, 62, 0.05), rgba(212, 175, 55, 0.05));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.stars i {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--bottle-green);
    font-size: 16px;
    margin-bottom: 3px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 13px;
}

/* ========== FOOTER ========== */
/* Footer Section */
.footer-section {
    width: 100%;
}

/* Gold Heading */
.footer-heading {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.loca
{
    margin-left: 33px;
    margin-top: -33px;
    margin-right: -33px;
}

/* List */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each Item */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap; /* important for mobile */
}

/* Icons */
.contact-info i {
    color: #d4af37;
    font-size: 16px;
    min-width: 20px;
}

/* Links */
.contact-info a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s;
    word-break: break-word; /* prevents overflow */
}

.contact-info a:hover {
    color: #d4af37;
}

/* 🔽 Mobile Responsive */
@media (max-width: 768px) {
    .footer-heading {
        font-size: 16px;
    }

    .contact-info li {
        font-size: 13px;
        gap: 10px;
    }

    .contact-info i {
        font-size: 14px;
    }
}

/* 🔽 Small Mobile */
@media (max-width: 480px) {
    .contact-info li {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info a {
        font-size: 13px;
    }
        .loca {
        margin-left: 0px;
        margin-top: -3px;
        margin-right: -33px;
        max-width: 100%;
    }
}


.footer {
    background: var(--bottle-green);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--gold);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin: 0;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--bottle-green);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: var(--header-offset);
        left: 0;
        width: 100vw;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: var(--white);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.active {
        max-height: 500px;
        overflow-y: auto;
    }

    .nav-link {
        padding: 16px 55px;
        border-bottom: 1px solid var(--bg-light);
        width: 100%;
        text-align: center;
        white-space: normal;
        justify-content: flex-start;
        font-size: 15px;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.3s ease;
        box-shadow: none;
        margin-top: 0;
        background: var(--bg-light);
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-item {
        padding: 14px 32px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-item:hover {
        padding-left: 40px;
    }
}

/* @media (max-width: 768px) {
 
  .nav-wrapper {
    position: relative;
    width: 100%;
  } */

  /* .nav-menu {
    position: absolute;
    top: 70px; 
    left: -10px; 
    width: 100vw; 
    background: #ffffff;
    flex-direction: column;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out, padding 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  } */
  /* Adjust based on header height minus padding */
  /* Offset the container's 16px padding */
  /* Full screen width */

  /* 3. Class to show the menu (triggered by JS on the hamburger button) */
  /* .nav-menu.active {
    height: auto;
    padding: 20px 16px;
    border-top: 1px solid #eee;
  } */

  /* 4. Improve touch targets for links */
  /* .nav-menu .nav-link {
    padding: 12px 0;
    width: 100%;
    display: block;
  }
} */

@media (max-width: 768px) {
    section {
        padding: 50px 20px;
    }
    .hero {
        min-height: 80vh;
    }
    .hero-logo {
        width: 200px;
        height: 200px;
        margin: 0;
        margin-top: -100px;
    }
    .nav-wrapper
    {
        max-width: 96%;
    }
    .hero-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-content {
        margin-top: 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .carousel-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 30px;
    }
    section {
        padding: 40px 16px;
    }
    .image-wrapper {
        width: 100%;
        aspect-ratio: 4/5;
    }
    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .logo-text {
        display: none;
    }
    .nav-wrapper
    {
        width: 95%;
    }
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .cta-btn {
        padding: 12px 24px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .service-card {
        padding: 20px;
    }

    .process-timeline {
        gap: 15px;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }
    .modal-content {
        width: 95%;
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in-up {
    animation: fadeInUp 0.8s ease both;
}

.fade-in-left {
    animation: slideInLeft 0.8s ease both;
}

.fade-in-right {
    animation: slideInRight 0.8s ease both;
}

.scale-in {
    animation: scaleIn 0.6s ease both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========== UTILITY CLASSES ========== */
.hidden {
    display: none !important;
}

.active-section {
    animation: fadeIn 0.6s ease;
}

/* ========== 3D TRANSFORMS ========== */

.service-icon {
    transform-style: preserve-3d;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

/* ========== SERVICE DETAIL SECTIONS ========== */
.service-detail {
    display: none;
    background: linear-gradient(135deg, rgba(15, 61, 62, 0.03), rgba(212, 175, 55, 0.05));
    border-top: 3px solid var(--gold);
}

.service-detail.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.service-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--bottle-green);
}

.service-detail-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    line-height: 1.7;
}

/* Service page hero video (Digital Marketing, Branding, Chatbot) */
.service-hero-video {
    margin: 0 auto 48px;
    max-width: 960px;
    width: 100%;
}

.service-hero-video-caption {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--bottle-green);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-hero-video-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 61, 62, 0.12);
    background: #0c0f0f;
}

.service-hero-video-el {
    display: block;
    width: 100%;
    height: auto;
    
}

.service-hero-video-credit {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.5;
}

.service-hero-video-credit a {
    color: var(--bottle-green);
    text-decoration: none;
    font-weight: 500;
}

.service-hero-video-credit a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .service-hero-video {
        margin-bottom: 36px;
    }

    .service-hero-video-frame {
        border-radius: 10px;
    }
}

/* Laptop mockup + embedded demo (Website Development) */
.laptop-showcase {
    margin: 0 auto 48px;
    max-width: 840px;
    width: 100%;
    text-align: center;
}

.laptop-showcase-caption {
    font-size: 14px;
    font-weight: 600;
    color: var(--bottle-green);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.laptop-mockup {
    filter: drop-shadow(0 18px 32px rgba(15, 61, 62, 0.22));
}

.laptop-lid {
    perspective: 1200px;
}

.laptop-bezel {
    position: relative;
    background: linear-gradient(145deg, #2a2f35 0%, #1a1e22 50%, #252a30 100%);
    border-radius: 14px 14px 4px 4px;
    padding: 10px 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 2px 0 rgba(0, 0, 0, 0.35);
}

.laptop-camera {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #4a5568, #1a202c);
    z-index: 2;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.laptop-screen-wrap {
    position: relative;
    width: 100%;
    padding-top: 62.5%;
    background: #0a0a0f;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
    container-type: inline-size;
    container-name: laptop-screen;
}

/* Stage clips the pre-scale iframe; demo renders at fixed "desktop" size then scales to fit */
.laptop-iframe-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}

.laptop-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 1200px;
    height: 750px;
    border: 0;
    display: block;
    transform-origin: top left;
    /* Fit 1200×750 layout into the bezel width (fixes oversized content on mobile) */
    transform: scale(calc(100cqw / 1200px));
}

@supports not (transform: scale(calc(100cqw / 1200px))) {
    .laptop-iframe {
        width: 100%;
        height: 100%;
        transform: none;
    }
}

.laptop-hinge {
    height: 6px;
    margin: 0 auto;
    width: 88%;
    background: linear-gradient(180deg, #3d4550, #1f2328);
    border-radius: 2px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.laptop-base {
    height: 14px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(180deg, #2d333b 0%, #1c2128 40%, #15191e 100%);
    border-radius: 0 0 10px 10px;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.laptop-base-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: #0f1216;
    border-radius: 0 0 6px 6px;
    opacity: 0.9;
}

@media (max-width: 480px) {
    .laptop-showcase {
        margin-bottom: 36px;
    }

    .laptop-bezel {
        padding: 6px 6px 5px;
        border-radius: 10px 10px 3px 3px;
    }
}

.close-service-btn {
    padding: 10px 22px;
    background: transparent;
    border: 2px solid var(--bottle-green);
    color: var(--bottle-green);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.close-service-btn:hover {
    background: var(--bottle-green);
    color: var(--white);
}

.service-detail-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.detail-img-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transition: var(--transition);
}

.detail-img-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.detail-img-card .img-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: linear-gradient(135deg, rgba(15, 61, 62, 0.08), rgba(212, 175, 55, 0.12));
}

.detail-img-card p {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.detail-block {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--gold);
}

.detail-block h3 {
    color: var(--bottle-green);
    font-size: 20px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-block h3 i {
    color: var(--gold);
}

.detail-block ul {
    list-style: none;
}

.detail-block ul li {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    padding: 6px 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.detail-block ul li:last-child {
    border-bottom: none;
}

.detail-block ul li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.process-steps-list {
    counter-reset: step-counter;
    list-style: none;
}

.process-steps-list li {
    counter-increment: step-counter;
    padding: 10px 0 10px 44px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid var(--bg-light);
}

.process-steps-list li:last-child {
    border-bottom: none;
}

.process-steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 10px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--bottle-green), var(--bottle-dark));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .service-detail-header h2 {
        font-size: 28px;
    }

    .service-detail-images {
        grid-template-columns: 1fr 1fr;
    }
    .hero-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-detail-images {
        grid-template-columns: 1fr;
    }
}

/* ========== HERO SERVICES PREVIEW ========== */
.hero-services-preview {
    padding: 60px 40px;
    background: var(--white);
}

.hsp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hsp-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.hsp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hsp-card:hover img {
    transform: scale(1.08);
}

.hsp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,61,62,0.85) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px 16px;
    gap: 8px;
    transition: background 0.3s ease;
}

.hsp-card:hover .hsp-overlay {
    background: linear-gradient(to top, rgba(15,61,62,0.92) 0%, rgba(15,61,62,0.3) 55%);
}

.hsp-overlay i {
    font-size: 28px;
    color: var(--gold);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.hsp-card:hover .hsp-overlay i {
    opacity: 1;
    transform: translateY(0);
}

.hsp-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hsp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-services-preview {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hsp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* ========== HOW WE WORK SECTION ========== */
.how-we-work {
    background: linear-gradient(135deg, rgba(15,61,62,0.04), rgba(212,175,55,0.06));
    padding: 80px 40px;
}

.how-we-work.service-hww {
    padding: 0 0 48px;
    background: transparent;
}

.hww-hub-lead {
    max-width: 640px;
    margin: 16px auto 0;
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.hww-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.hww-hub-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid rgba(15, 61, 62, 0.08);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(15, 61, 62, 0.06);
}

.hww-hub-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 61, 62, 0.12);
}

.hww-hub-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(15, 61, 62, 0.08), rgba(212, 175, 55, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hww-hub-icon i {
    font-size: 22px;
    color: var(--bottle-green);
}

.hww-hub-card h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: var(--bottle-green);
}

.hww-hub-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0 0 16px;
    flex: 1;
}

.hww-hub-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hww-hub-card:hover .hww-hub-cta {
    color: var(--bottle-dark);
}

.hww-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hww-tab {
    padding: 12px 24px;
    border: 2px solid rgba(212,175,55,0.3);
    background: var(--white);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hww-tab i {
    color: var(--gold);
}

.hww-tab:hover,
.hww-tab.active {
    background: linear-gradient(135deg, var(--bottle-green), var(--bottle-dark));
    color: var(--white);
    border-color: var(--bottle-green);
    box-shadow: 0 8px 20px rgba(15,61,62,0.25);
}

.hww-tab.active i,
.hww-tab:hover i {
    color: var(--gold);
}

.hww-panel {
    display: none;
}

.hww-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Vertical Timeline */
.hww-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hww-step {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.hww-step.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* Alternate image/content sides */
.hww-step:nth-child(even) .hww-step-img { order: 3; }
.hww-step:nth-child(even) .hww-step-line { order: 2; }
.hww-step:nth-child(even) .hww-step-content { order: 1; text-align: right; }
.hww-step:nth-child(even) .hww-step-num { margin-left: auto; }

.hww-step-img {
    padding: 0 20px 40px;
}

.hww-step-img img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transform: scale(0.97);
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.hww-step.visible .hww-step-img img {
    transform: scale(1);
}

.hww-step-img img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* Centre line */
.hww-step-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.hww-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bottle-green), var(--gold));
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold);
    flex-shrink: 0;
    transform: scale(0.85);
    transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.hww-step.visible .hww-dot {
    transform: scale(1.2);
}

.hww-connector {
    width: 3px;
    flex: 1;
    min-height: 60px;
    background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,0.2));
    margin-top: 6px;
}

/* Content side */
.hww-step-content {
    padding: 10px 20px 40px;
}

.hww-step-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(212,175,55,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hww-step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bottle-green);
    margin-bottom: 10px;
    line-height: 1.3;
}

.hww-step-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hww-step {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
    }
    .hww-step .hww-step-img { order: 2; grid-column: 2; padding: 0 0 16px; }
    .hww-step .hww-step-line { order: 1; grid-row: 1 / 3; }
    .hww-step .hww-step-content { order: 3; grid-column: 2; padding: 0 0 32px; }
    .hww-step:nth-child(even) .hww-step-img { order: 2; }
    .hww-step:nth-child(even) .hww-step-line { order: 1; }
    .hww-step:nth-child(even) .hww-step-content { order: 3; text-align: left; }
    .hww-step:nth-child(even) .hww-step-num { margin-left: 0; }
    .how-we-work { padding: 50px 20px; }
    .hww-tabs { gap: 8px; }
    .hww-tab { padding: 10px 16px; font-size: 13px; }
}

/* ========== STANDALONE SERVICE PAGES ========== */
.service-page-main {
    min-height: calc(100vh - var(--header-offset));
    margin-top: var(--header-offset);
}

.service-page-main .service-detail {
    display: block;
    animation: fadeIn 0.4s ease;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.45);
    border-radius: 8px;
    color: var(--bottle-green);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.back-to-home:hover {
    background: var(--bottle-green);
    color: var(--white);
    border-color: var(--bottle-green);
}
