/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary-black: #222222;
    --text-dark: #222222;
    --text-light: rgb(209, 207, 192);

    /* Brand Colors */
    --chocolate: #ffbf34;
    --chocolate-light: #ffbf34;
    --chocolate-dark: #ffbf34;
    --teal: rgb(30, 192, 178);

    /* Backgrounds */
    --cream: #FAF3E1;
    --cream-light: #FAF3E1;
    --cream-dark: rgb(180, 178, 165);

    /* Gradients */
    --grad-chocolate: linear-gradient(135deg, var(--chocolate), var(--chocolate-light));
    --grad-purple: linear-gradient(135deg, #667eea, #764ba2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #FAF3E1; /* Matches var(--cream) */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #222222;
    line-height: 1.6;
}

main {
    flex: 1;
    text-align: center;
    margin-top: 80px;
    padding: 2rem 0; /* Overrides previous 50px 20px */
}

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

/* =========================================
   2. GLOBAL ANIMATIONS
   ========================================= */
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   3. NAVIGATION
   ========================================= */
.nav_container {
    margin: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 80px;
    margin: 10px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.nav_menu {
    display: flex;
    gap: 20px;
}

.nav_menu ul {
    font-size: 18px;
    font-weight: 800;
    color: inherit;
    margin: 10px;
    text-align: center;
    list-style-type: none;
    padding: 0;
}

.nav_menu ul li a {
    text-decoration: none;
    color: inherit;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
    padding: 10px 15px;
}

/* Animated underline effect for non-active links */
.nav_menu ul li a:not(.active)::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--chocolate);
    transition: width 0.3s ease;
    transform-origin: right;
}

/* Hover effect */
.nav_menu ul li a:not(.active):hover {
    color: var(--chocolate);
}

.nav_menu ul li a:not(.active):hover::after {
    width: 100%;
    right: 0;
    transform-origin: left;
}

/* Active link styling */
.active {
    color: var(--chocolate) !important;
    background-color: transparent;
}

.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0); /* Overridden by rgba in later styles, kept original base */
}

.nav_menu_button {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: rgb(31, 31, 31);
    padding: 10px;
}

/* =========================================
   4. HOME PAGE SECTIONS
   ========================================= */

/* Hero Slideshow */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
    margin: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.slideshow-container {
    position: relative;
    height: 100%;
}

.slide {
    display: none;
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.7), rgba(210, 180, 140, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInDown 1s ease-out;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    animation: slideInUp 1s ease-out 0.3s both;
}

/* Slideshow Navigation */
.slide-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.slide-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background-color: var(--chocolate);
    transform: scale(1.2);
}

.slide-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.slide-arrows:hover {
    background-color: var(--chocolate);
}

.prev-arrow { left: 30px; }
.next-arrow { right: 30px; }

/* Hero Generic (for other pages potentially) */
.hero {
    text-align: center;
    padding: 4rem 0;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section (Home Page Variant) */
.about-section {
    padding: 80px 20px;
    text-align: center;
    background: var(--chocolate);
    margin: 40px 20px;
    color: white;
    border-radius: 20px;
}

.about-section h2 {
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    font-weight: 800;
}

.about-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Stats (Shared) */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    color: white;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background: #222222;
    backdrop-filter: blur(10px);
    border: 2px solid var(--chocolate);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #BF4646;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 600;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Companies Rail */
.companies-section {
    padding: 60px 0;
    background-color: rgba(31, 31, 31, 0.05);
    margin: 40px 0;
}

.companies-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--chocolate);
    margin-bottom: 50px;
    font-weight: 800;
}

.companies-rail {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.companies-track {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    gap: 60px;
    align-items: center;
}

.company-logo {
    height: 80px;
    width: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.company-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Services Preview & Section */
.services-preview {
    padding: 20px 20px;
    text-align: center;
    color: var(--primary-black);
}

.services-preview h2 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 50px;
    font-weight: 800;
}

.services-section {
    background: white;
    border-radius: 20px;
    margin: 2rem 0;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--primary-black);
}

.service-card {
    background: var(--primary-black);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(210, 180, 140, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--cream); /* Overridden by #333 in generic block, specific rule wins */
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features li {
    padding: 0.3rem 0;
    color: #ffffff;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* TikTok Video Section */
.video-section {
    background: white;
    border-radius: 20px;
    margin: 2rem 0;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: #1E3E62;
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    width: 100%;
    height: 300px;
    /*background: linear-gradient(135deg, hsl(16, 100%, 54%), #cbb91c);*/
    background-color: #ACBFA4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.video-title {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.video-description {
    color: var(--cream);
    font-size: 0.9rem;
}

/* Brands Section */
.brands-section {
    background: white;
    border-radius: 20px;
    margin: 2rem 0;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.brand-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.brand-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.brand-type {
    color: #666;
    font-size: 0.9rem;
}

/* Map Section (Home) */
.map-section {
    padding: 20px 20px;
    text-align: center;
    margin: 20px 20px;
    border-radius: 20px;
}

.map-section h2 {
    font-size: 2.5rem;
    color: var(--chocolate);
    margin-bottom: 30px;
    font-weight: 800;
}

.map-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
    height: 400px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--chocolate);
    border: 2px solid var(--chocolate);
    margin-top: 2rem;
}

#map {
    width: 100%;
    height: 100%;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 20px;
    text-align: center;
    background: var(--chocolate);
    color: white;
    margin: 40px 20px;
    border-radius: 20px;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* =========================================
   5. ABOUT PAGE SECTIONS
   ========================================= */
.about-main {
    padding-top: 10px;
    background: var(--chocolate);
    min-height: 100vh;
    flex: 1;
    margin-top: 0;
}

.hero-about {
    text-align: center;
    color: white;
    padding: 2rem 0;
}

.hero-about h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--cream);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-about p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: var(--primary-black);
    font-weight: 800;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.content-section {
    background: white; /* or var(--cream) depending on block */
    margin: 2rem 0;
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--chocolate);
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}
.map-section.fade-in.visible h2{
    color: var(--cream);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2); /* var(--chocolate) in other places */
    border-radius: 2px;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Owner & Team */
.owner-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.owner-photo {
    text-align: center;
}

.owner-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    margin: 0 auto 1rem;
    border: 5px solid #f8f9fa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-name, .team-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.owner-title, .team-position {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.owner-info {
    text-align: left;
}

.owner-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.owner-description, .team-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.owner-achievements {
    list-style: none;
}

.owner-achievements li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.owner-achievements li::before {
    content: '🏆';
    position: absolute;
    left: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
    border: 3px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name { font-size: 1.3rem; }

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.value-description {
    color: #666;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    margin-top: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
}

.timeline-content {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #667eea;
    transform: scale(1.02);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #666;
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: #667eea;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #667eea;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

/* Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.area-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.area-item:hover {
    border-color: #667eea;
    transform: translateY(-3px);
}

.area-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.area-name {
    font-weight: 600;
    color: #333;
}

/* =========================================
   6. SERVICES PAGE SECTIONS
   ========================================= */
.services-main {
    padding-top: 10px;
    background: var(--chocolate);
    min-height: 100vh;
    flex: 1;
    margin-top: 0;
}

.hero-services {
    text-align: center;
    color: var(--cream);
    padding: 2rem 0 2rem;
}

.hero-services h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-services p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: var(--primary-black);
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-black);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Service Categories */
.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--cream-light);
    border-radius: 20px;
    padding: 2.5rem;
    border: 3px solid var(--chocolate);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 63, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(123, 63, 0, 0.3);
    border-color: var(--chocolate-light);
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.category-desc {
    color: var(--primary-black);
    font-size: 1rem;
}

.services-list {
    list-style: none;
}

.service-item {
    background: var(--cream);
    margin: 1rem 0;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--chocolate);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    transform: translateX(10px);
    border-color: var(--chocolate-light);
    box-shadow: 0 8px 25px rgba(123, 63, 0, 0.2);
}

.service-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.service-desc {
    color: var(--primary-black);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.feature-tag {
    background: var(--chocolate);
    color: var(--cream);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Product Showcase */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--cream-light);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--chocolate);
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(123, 63, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--cream-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--chocolate);
    margin-bottom: 1.5rem;
    border: 2px solid var(--chocolate);
}

.product-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.product-details {
    color: var(--primary-black);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.price-range {
    background: var(--chocolate);
    color: var(--cream);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Delivery Section */
.delivery-section {
    background: linear-gradient(135deg, var(--primary-black), var(--chocolate-dark));
    color: var(--cream);
    text-align: center;
}

.delivery-section .section-title {
    color: var(--cream);
}

.delivery-section .section-title::after {
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
}

.malaysia-map {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background: var(--cream);
    border-radius: 15px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--chocolate);
    border: 3px solid var(--chocolate);
}

.delivery-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.delivery-card {
    background: rgba(209, 207, 192, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--chocolate);
    transition: all 0.3s ease;
}

.delivery-card:hover {
    transform: translateY(-5px);
    border-color: var(--chocolate-light);
}

.delivery-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.delivery-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Special Offers */
.special-offer {
    background: var(--primary-black);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.special-offer::before {

    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.1;
}

.special-offer .section-title {
    color: var(--cream);
}

.special-offer .section-title::after {
    background: var(--primary-black);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: rgba(209, 207, 192, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid var(--cream);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: scale(1.05);
    border-color: var(--cream-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.offer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.offer-desc {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.offer-conditions {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--chocolate), var(--chocolate-light));
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--chocolate), var(--chocolate-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--cream);
    font-size: 2rem;
    font-weight: bold;
    border: 4px solid var(--cream);
}

.step-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--primary-black);
    font-size: 0.9rem;
}

/* =========================================
   7. CONTACT PAGE SECTIONS
   ========================================= */
.contact-main {
    padding-top: 10px;
    background: var(--chocolate);
    min-height: 100vh;
    flex: 1;
    margin-top: 0;
}

.hero-contact {
    text-align: center;
    color: var(--cream);
    padding: 2rem 0 2rem;
}

.hero-contact h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-contact p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: var(--primary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-page, .contact-form, .hours-section, .cta-section {
    background: var(--cream);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--chocolate);
    margin: 2rem 0; /* Merged margin property logic */
}

/* Contact Info Page Specifics */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--cream-light);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--chocolate);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 63, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 63, 0, 0.3);
    border-color: var(--chocolate-light);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--chocolate), var(--chocolate-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--chocolate);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--chocolate);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--chocolate-light);
}

/* Contact Form Specifics */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-black);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--cream-light);
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--chocolate);
    box-shadow: 0 0 10px rgba(123, 63, 0, 0.2);
}

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

/* Business Hours Grid */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.hours-card {
    background: var(--cream-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--chocolate);
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 63, 0, 0.2);
}

.hours-day {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hours-time {
    color: var(--chocolate);
    font-size: 1rem;
}

/* CTA Section specifics */
.cta-section {
    background: var(--primary-black);
    text-align: center;
}

.cta-section h2 {
    color: var(--cream);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* =========================================
   8. GLOBAL BUTTONS
   ========================================= */
.cta-button, .submit-btn, .cta-btn {
    background: linear-gradient(45deg, var(--chocolate), #e67e22);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Add specific animations/overrides */
.cta-button {
    animation: slideInUp 1s ease-out 0.6s both;
}

.submit-btn {
    background: linear-gradient(135deg, var(--chocolate), var(--chocolate-light));
    color: var(--cream);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border-radius: 10px;
}

.cta-btn {
    background: linear-gradient(135deg, var(--chocolate), var(--chocolate-light));
    color: var(--cream);
    padding: 1.5rem 2rem; /* merged larger padding from later definition */
    border-radius: 15px; /* merged border radius */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border: 2px solid transparent;
}

/* Hover States for all buttons */
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(210, 180, 140, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 63, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 63, 0, 0.3);
    border-color: var(--cream);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   9. FOOTER
   ========================================= */
.footer {
    background-color: rgb(31, 31, 31);
    color: rgb(209, 207, 192);
    padding: 60px 0 30px 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-section {
    padding: 0 10px;
}

.footer-section h3 {
    color: var(--chocolate);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    white-space: nowrap;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: rgb(30, 192, 178);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.company-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.company-info .company-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--chocolate);
    margin-bottom: 10px;
}

.company-info .tagline {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 20px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info .icon {
    font-size: 16px;
    width: 20px;
    color: var(--chocolate);
}

.contact-info a {
    color: rgb(209, 207, 192);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--chocolate);
}

.quick-links ul {
    list-style: none;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: rgb(209, 207, 192);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.quick-links a:hover {
    color: var(--chocolate);
    padding-left: 10px;
}

.quick-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-links a:hover::before {
    opacity: 1;
}

.services-list {
    list-style: none;
}

.services-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgb(30, 192, 178);
    font-weight: bold;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(209, 207, 192, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: rgb(209, 207, 192);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background-color: var(--chocolate);
    color: rgb(31, 31, 31);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(209, 207, 192, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom .heart {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* =========================================
   10. GALLERY
   ========================================= */
.gallery-main {
    padding-top: 10px;
    background: var(--chocolate);
    min-height: 100vh;
    flex: 1;
    margin-top: 0;
}
.gallery-about {
    text-align: center;
    color: white;
    padding: 1rem 0;
}

.gallery-about h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--cream);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-about p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: var(--primary-black);
    font-weight: 800;
}
/* Social Connect CTA */
.social-connect {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--cream-light); /* Uses your existing cream variable */
    border-radius: 15px;
    border: 2px dashed var(--chocolate); /* Dashed border makes it look like a "coupon" or special note */
    text-align: center;
}

.social-content h3 {
    color: var(--primary-black);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.social-content p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.social-buttons-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.social-emoji {
    font-size: 1.2rem;
}

/* Specific Colors for each Platform */
.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.facebook {
    background-color: #1877F2;
}

.social-btn.tiktok {
    background-color: #000000;
}

/* Hover Effects */
.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    filter: brightness(1.1); /* Makes the button slightly brighter on hover */
}

/* Mobile Adjustment */
@media (max-width: 480px) {
    .social-btn {
        width: 100%; /* Full width buttons on phone for easier tapping */
        justify-content: center;
    }
}
/* =========================================
   11. MEDIA QUERIES (RESPONSIVE)
   ========================================= */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr; /* 2x2 grid for tablets */
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav_container {
        flex-wrap: wrap;
        position: relative;
        z-index: 9999; /* Fix z-index issue */
    }

    .nav_menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgb(209, 207, 192);
        flex-direction: column;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        /* Combined properties from duplicates */
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
    }

    .nav_menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        left: 0;
    }

    .nav_menu ul {
        margin: 0;
        padding: 10px 0;
        width: 100%;
    }

    .nav_menu ul li a {
        display: block;
        padding: 15px 20px;
    }

    .nav_menu_button {
        display: block;
        z-index: 10001;
    }

    .logo img {
        height: 60px;
    }

    /* Layout & Sections */
    .hero h1 { font-size: 2rem; }
    .hero-section { height: 60vh; margin: 10px; }
    .slide-content h1 { font-size: 2.5rem; }
    .slide-content p { font-size: 1.1rem; }
    
    .container { padding: 0 1rem; }
    .section-title { font-size: 2rem; } /* Merged 1.8rem and 2rem */
    
    .about-section, .services-preview, .map-section, .contact-cta, 
    .services-section, .video-section, .brands-section, 
    .content-section, .contact-info, .contact-form, .hours-section, .cta-section {
        margin: 20px 10px;
        padding: 2rem 1rem;
    }

    .services-grid, .contact-content, .owner-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* About Specifics */
    .hero-about h1, .hero-services h1, .hero-contact h1 {
        font-size: 2.5rem;
    }
    
    .hero-about p, .hero-services p, .hero-contact p {
        font-size: 1.1rem;
    }

    .owner-section { text-align: center; }
    .owner-info { text-align: center; }
    .owner-image { width: 200px; height: 200px; }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stat-item { padding: 1.5rem 1rem; }

    /* Timeline */
    .timeline::before { left: 20px; }
    .timeline-item {
        width: calc(100% - 60px);
        left: 60px !important;
        text-align: left;
    }
    .timeline-item .timeline-dot { left: -30px !important; }

    /* Services Specifics */
    .service-categories { grid-template-columns: 1fr; }
    .category-card { padding: 2rem; }
    .process-timeline { flex-direction: column; gap: 2rem; }
    .process-timeline::before { display: none; }

    /* Contact Specifics */
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-btn { width: 100%; max-width: 300px; justify-content: center; }

    /* Footer */
    /* 1. Center the main footer text */
    .footer-content {
        text-align: center; 
    }

    /* 2. Center the contact info items (Phone, Email, Address) */
    .contact-info li {
        justify-content: center; /* Centers the icon and text horizontally */
    }

    /* 3. Center the underline below the headings */
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer { padding: 30px 0 15px 0; }
    .footer-section h3 { font-size: 18px; }
    .company-info .company-name { font-size: 20px; }
    .social-media { justify-content: center; }
    
    /* Others */
    .companies-track { gap: 40px; }
    .company-logo { height: 60px; }
    .slide-arrows { top: 40%; }
    .services-list li::before{
        display: none;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .nav_container {
        margin: 5px;
        padding: 15px;
    }
    
    .logo img {
        height: 50px;
        margin: 5px;
    }
    
    .nav_menu ul li a {
        font-size: 16px;
        padding: 12px 15px;
    }

    .footer-container {
        padding: 0 15px;
    }
    
    .footer-section {
        padding: 5px;
    }
    
    .social-media {
        flex-wrap: wrap;
        gap: 10px;
    }
}