/* --- RESET & CORE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* --- BACKGROUND ANIMATION (Reused) --- */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    opacity: 0.1;
    animation: floatFullPage linear infinite;
    color: #FF6A00;
}

.bg-shape:nth-child(1) {
    top: 10%;
    left: 5%;
    font-size: 80px;
    animation-duration: 25s;
    color: #FFC107;
}

.bg-shape:nth-child(2) {
    top: 20%;
    right: 10%;
    font-size: 120px;
    animation-duration: 35s;
    animation-delay: -5s;
    color: #1a1a1a;
    opacity: 0.05;
}

.bg-shape:nth-child(3) {
    bottom: 15%;
    left: 15%;
    font-size: 60px;
    animation-duration: 28s;
    animation-delay: -10s;
}

.bg-shape:nth-child(4) {
    bottom: 30%;
    right: 5%;
    font-size: 90px;
    animation-duration: 32s;
    color: #43A047;
    opacity: 0.08;
}

.bg-shape:nth-child(5) {
    top: 50%;
    left: 50%;
    font-size: 150px;
    animation-duration: 45s;
    opacity: 0.03;
    color: #333;
}

@keyframes floatFullPage {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 40px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* --- HEADER STYLES (Identical) --- */
.header {
    background: #F8EBD6;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 72px;
    animation: slideDown 0.8s ease forwards;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    display: block;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-buttons .btn-login {
    padding: 8px 24px;
    border: 1px solid #ccc;
    background: transparent;
    border-radius: 30px;
    color: #333;
    font-weight: 500;
}

.auth-buttons .btn-login:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #bbb;
}

.auth-buttons .btn-signup {
    background: #FF6A00;
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(255, 106, 0, 0.2);
}

.auth-buttons .btn-signup:hover {
    background: #e05c00;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 106, 0, 0.3);
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    margin-left: 10px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* --- BRANDING HERO SECTION --- */
.brand-hero {
    position: relative;
    padding: 100px 0;
    background-color: #111;
    color: white;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.brand-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background: radial-gradient(circle at 70% 30%, #444, #111);
}

/* Animated Abstract Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: floatComplex 10s infinite alternate;
}

.hs-1 {
    width: 300px;
    height: 300px;
    background: #FF6A00;
    top: -50px;
    right: -50px;
    animation-duration: 15s;
}

.hs-2 {
    width: 400px;
    height: 400px;
    background: #53C3B1;
    bottom: -100px;
    left: -100px;
    animation-duration: 20s;
}

.brand-hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.brand-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.brand-hero h1 span {
    color: #FF6A00;
    display: inline-block;
    position: relative;
}

.brand-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transform: skewX(-20deg);
}

.brand-hero p {
    font-size: 18px;
    color: #ddd;
    max-width: 600px;
    margin-bottom: 35px;
}

.btn-primary {
    background: #FF6A00;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #e05c00;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.5);
}

/* --- BRAND PHILOSOPHY SECTION --- */
.philosophy {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.phil-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.phil-visual {
    position: relative;
    height: 400px;
}

.phil-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 70%;
    transition: 0.5s;
    border: 1px solid #eee;
}

.pc-1 {
    top: 0;
    left: 0;
    z-index: 2;
    transform: rotate(-3deg);
}

.pc-2 {
    bottom: 0;
    right: 0;
    z-index: 1;
    transform: rotate(3deg);
    background: #f9f9f9;
}

.phil-visual:hover .pc-1 {
    transform: rotate(-5deg) translateY(-10px);
}

.phil-visual:hover .pc-2 {
    transform: rotate(5deg) translateY(10px);
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* --- SERVICES GRID SECTION --- */
.brand-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #111;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid #FF6A00;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #fff4e6;
    color: #FF6A00;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.service-card:hover .icon-box {
    background: #FF6A00;
    color: #fff;
    transform: rotate(10deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.service-card li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card li i {
    color: #53C3B1;
    font-size: 12px;
}

/* --- PROCESS SECTION (Step Animation) --- */
.brand-process {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
    position: relative;
    overflow: hidden;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.step-item {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 15px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #333;
    border: 2px solid #FF6A00;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    transition: 0.4s;
    position: relative;
    z-index: 2;
}

.step-item:hover .step-icon {
    background: #FF6A00;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.6);
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.step-item p {
    font-size: 14px;
    color: #aaa;
}

/* --- CTA SECTION --- */
.brand-cta {
    padding: 100px 0;
    text-align: center;
    background: url('assets/images/hero-bg.jpg') center/cover fixed;
    position: relative;
}

.brand-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 106, 0, 0.9);
}

.brand-cta .container {
    position: relative;
    z-index: 2;
    color: white;
}

.brand-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.brand-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: #FF6A00;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #f9f9f9;
}

/* --- FOOTER STYLES (Identical) --- */
.footer {
    background: #f9f9f9;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid #eee;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.footer-logo h3 span {
    display: block;
    font-size: 14px;
    color: #FF6A00;
    font-weight: 500;
}

.footer-logo p {
    color: #777;
    margin: 10px 0;
}

.tagline {
    font-weight: 600;
    color: #FF6A00 !important;
    font-size: 18px;
    margin: 15px 0 30px;
}

.footer-links a {
    margin: 0 15px;
    color: #666;
    font-size: 14px;
}

.footer-links a:hover {
    color: #FF6A00;
}

.footer-copyright {
    margin-top: 30px;
    color: #999;
    font-size: 13px;
}

/* --- ANIMATIONS --- */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes floatComplex {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-hidden {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.animate-hidden {
    transform: translateY(40px);
}

.fade-right.animate-hidden {
    transform: translateX(-40px);
}

.fade-left.animate-hidden {
    transform: translateX(40px);
}

.zoom-in.animate-hidden {
    transform: scale(0.8);
}

.animate-active {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.stagger-children.animate-active>* {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.animate-active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children.animate-active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children.animate-active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children.animate-active>*:nth-child(4) {
    transition-delay: 0.4s;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }

    .brand-hero h1 {
        font-size: 36px;
    }

    .phil-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .process-line {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .phil-visual {
        height: 300px;
        margin-bottom: 40px;
    }
}