* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f5f1ed 0%, #e8ddd4 100%);
    overflow-x: hidden;
}

/* Professional Home Button */
.home-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: linear-gradient(45deg, #df731a, #a24f18);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInFromRight 1s ease-out;
    letter-spacing: 0.5px;
}

.home-btn:hover {
    background: rgba(232, 115, 18, 0.854);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.home-btn:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}

/* Hero Section */
.hero-about {
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(223, 115, 26, 0.1) 0%, rgba(162, 79, 24, 0.1) 100%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #3a2f28;
    margin-bottom: 20px;
    position: relative;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #df731a, #a24f18);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1s both;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #8b5e3c;
    margin-bottom: 40px;
    font-style: italic;
    animation: slideInRight 1s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.9s both;
}

/* Cool Introduce Button */
.introduce-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #df731a, #a24f18);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(223, 115, 26, 0.3);
    animation: bounceIn 1s ease-out 1.2s both;
}

.introduce-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.introduce-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(223, 115, 26, 0.4);
}

.introduce-btn:hover::before {
    left: 100%;
}

.introduce-btn:active {
    transform: translateY(-1px);
}

/* About Content Sections */
.about-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #3a2f28;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #df731a, #a24f18);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #df731a, #a24f18);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    color: #df731a;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #3a2f28;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.story-section {
    background: rgba(255, 255, 255, 0.8);
    padding: 80px 5%;
    border-radius: 20px;
    margin: 60px 0;
    backdrop-filter: blur(10px);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 2.2rem;
    color: #3a2f28;
    margin-bottom: 30px;
}

.story-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Footer */
.footer {
    background-color: #d88b19;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Email Signup */
.signup-box h3 {
    text-align: left;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
}

.signup-box form {
    display: flex;
    gap: 5px;
    border: 1px solid #fff;
}

.signup-box input {
    padding: 10px;
    border: none;
    border-radius: 30px;
    outline: none;
    background: #d88b19;
    color: white;
}

.signup-box input::placeholder {
    color: #fff;
    opacity: 1;
}

.signup-box button {
    background: transparent;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    position: relative;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Social Icon Tooltips */
.social-icons a::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    white-space: nowrap;
}

.social-icons a::before {
    content: "";
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #000;
    opacity: 0;
    transition: 0.3s ease;
}

.social-icons a:hover::after,
.social-icons a:hover::before {
    opacity: 1;
}

/* Social Icon Hover Colors */
.facebook:hover {
    color: #1877f2;
}

.instagram:hover {
    color: #e4405f;
}

.tiktok:hover {
    color: #69c9d0;
}

.whatsapp:hover {
    color: #25d366;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }

    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }

    70% {
        transform: scale(0.9) translateY(0);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ========================================= */
/* FOOTER BOTTOM - CLEAN INLINE APPROACH    */
/* ========================================= */
.footer-bottom {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #D3D3D3;
    font-size: 12px;
}

.footer-bottom a {
    color: #D3D3D3;
    text-decoration: none;
    line-height: 1;
    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
    text-decoration: none;
}

/* Add dots between all links */
.footer-bottom a:not(:last-child)::after {
    content: " • ";
    color: #fff;
    margin: 0 8px;
    pointer-events: none;
}

/* ========================================= */
/* TABLET RESPONSIVENESS (768px - 1024px)   */
/* ========================================= */
@media (max-width: 1024px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-top {
        padding: 15px;
        gap: 30px;
    }

    .social-icons {
        gap: 15px;
    }

    .footer-bottom {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom .footer-links a {
        margin: 0 8px 0 0;
        font-size: 11px;
    }

    .footer-bottom .copyright {
        font-size: 11px;
    }

    /* Hide dots on tablet */
    .footer-bottom a:not(:last-child)::after {
        display: none;
    }
}

/* ========================================= */
/* TABLET TO MOBILE TRANSITION (768px)      */
/* ========================================= */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .signup-box {
        width: 100%;
        max-width: 400px;
    }

    .signup-box h3 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .signup-box form {
        border-radius: 30px;
        overflow: hidden;
    }

    .signup-box input {
        flex: 1;
        min-width: 200px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 15px;
    }

    .footer-bottom a {
        margin: 5px 0;
        font-size: 12px;
    }

    /* Hide dots on mobile */
    .footer-bottom a:not(:last-child)::after {
        display: none;
    }
}

/* ========================================= */
/* MOBILE RESPONSIVENESS (under 768px)      */
/* ========================================= */
@media (max-width: 480px) {
    .footer {
        padding: 25px 10px;
    }

    .footer-top {
        padding: 10px;
        gap: 20px;
    }

    .signup-box {
        width: 100%;
    }

    .signup-box h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .signup-box form {
        flex-direction: column;
        border: none;
        gap: 10px;
    }

    .signup-box input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #fff;
        border-radius: 25px;
        min-width: auto;
    }

    .signup-box button {
        width: 100%;
        padding: 12px;
        border: 1px solid #fff;
        border-radius: 25px;
        font-size: 16px;
    }

    .social-icons {
        gap: 25px;
        justify-content: center;
    }

    .social-icons a {
        font-size: 24px;
        padding: 10px;
    }

    /* Hide tooltips on mobile for better touch experience */
    .social-icons a::after,
    .social-icons a::before {
        display: none;
    }

    .footer-bottom {
        gap: 20px;
    }

    .footer-bottom .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-bottom a {
        display: block !important;
        margin: 0;
        padding: 5px 0;
        font-size: 13px;
        line-height: 1.4;
    }

    /* Hide dots on mobile */
    .footer-bottom a:not(:last-child)::after {
        display: none;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .footer {
        padding: 20px 8px;
    }

    .signup-box input,
    .signup-box button {
        padding: 10px 12px;
        font-size: 14px;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icons a {
        font-size: 22px;
        padding: 8px;
    }

    .footer-bottom a {
        font-size: 12px;
    }

    /* Hide dots on extra small mobile */
    .footer-bottom a:not(:last-child)::after {
        display: none;
    }
}